iOS支持图文混排的按钮(UIButton)

Posted 一颗大牛的心

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS支持图文混排的按钮(UIButton)相关的知识,希望对你有一定的参考价值。

创建UIButton子类 直接上代码了 

.h文件

创建UIButton子类 直接上代码了 

.h文件
#import <UIKit/UIKit.h>

@interface GraphicBtn : UIButton
@property (nonatomic,assign)CGRect titleRect;
@property (nonatomic,assign)CGRect imageRect;
@end

 .m文件

 

#import "GraphicBtn.h"

 

@implementation GraphicBtn

- (id)initWithFrame:(CGRect)frame

 

{

    

    self = [super initWithFrame:frame];

    

    if (self) {

        

        //可根据自己的需要随意调整

        

//        self.titleLabel.textAlignment = NSTextAlignmentCenter;

//        

//        self.titleLabel.font = [UIFont systemFontOfSize:12.0];

        

        self.imageView.contentMode = UIViewContentModeScaleToFill;

        

    }

    

    return self;

    

}

 

//重写父类UIButton的方法

 

//更具button的rect设定并返回文本label的rect

 

- (CGRect)titleRectForContentRect:(CGRect)contentRect

 

{

    return self.titleRect;

}

 

//更具button的rect设定并返回UIImageView的rect

 

- (CGRect)imageRectForContentRect:(CGRect)contentRect

 

{

    return self.imageRect;

}

@end

//  使用方法初始化按钮的时候自己计算好文字与图片的frame就可以了 

以上是关于iOS支持图文混排的按钮(UIButton)的主要内容,如果未能解决你的问题,请参考以下文章

iOS 表情键盘+gif聊天图文混排,看我的就够了

iOS图文混排的几种方式

ios开发,关于图文混排

ios开发,关于图文混排

UGUI-图文混排方案

使用CoreText实现图文混排