1.首先新建一个类该类继承UIButton
2.实现几个方法
1).修改字体的一些属性
-(instancetype)initWithFrame:(CGRect)frame{
self = [super initWithFrame:frame];
if (self) {
1--》设置字体显示的位置(左.中.右)
self.titleLabel.textAlignment = NSTextAlignmentCenter;
2--》设置字体的大小
self.titleLabel.font = [UIFont systemFontOfSize:12];
3--》设置字体的颜色
[self setTitleColor:[UIColor colorWithRed:0.33f green:0.33f blue:0.33f alpha:1.00f] forState: UIControlStateNormal];
4--》选中之后的颜色
[self setTitleColor:[UIColor colorWithRed:0.32f green:0.74f blue:1.00f alpha:1.00f] forState:UIControlStateSelected];
}
return self;
}
在许多情况下我们设置的按钮即有文字(title)又有图片(image)对于文字和图片的位置如何设置只需要完成如下两种方法即可
2).设置title所在的位置,前两个属性设置文字所在的位置,后两个属性设置文字的大小
-(CGRect)titleRectForContentRect:(CGRect)contentRect{
return CGRectMake(0, 30, contentRect.size.width, 15);
}
3).设置图片所在的位置,当然这里要在参考前面设置字体的范围以及view的范围来设置,后期可以根据具体的范围来进行调整
-(CGRect)imageRectForContentRect:(CGRect)contentRect{
return CGRectMake((contentRect.size.width - 26)/2, 2, 26, 26);
}
这个方法很好使的