经常会用到上面是图片,下面是文字的Button。这样的控件可以自定义,但是偶然发现一个直接对系统button进行图片与位置的重新layout实现同样效果的代码,最后使用的按钮是这样的:
代码是通过继承UIButton,然后再重写layoutSubviews方法,对自带的图片和titleLabel进行重新的layout,代码如下:
//
// ZZZUpDownButton.h
//
// Copyright © 2016年 George. All rights reserved.
//
/** * 这个Button是系统button变成上面图片,下面文字的样子 */
#import <UIKit/UIKit.h>
@interface ZZZUpDownButton : UIButton
@end
//
// ZZZUpDownButton.m
//
// Copyright © 2016年 George. All rights reserved.
//
#import "ZZZUpDownButton.h"
@implementation ZZZUpDownButton
// 加载xib都会先走这个方法
- (void)awakeFromNib {
[super awakeFromNib];
// 可以在这里对button进行一些统一的设置
self.titleLabel.textAlignment = NSTextAlignmentCenter;
self.titleLabel.numberOfLines = 0;
}
// 在重新layout子控件时,改变图片和文字的位置
- (void)layoutSubviews {
[super layoutSubviews];
// 图片上限靠着button的顶部
CGRect tempImageviewRect = self.imageView.frame;
tempImageviewRect.origin.y = 0;
// 图片左右居中,也就是x坐标为button宽度的一半减去图片的宽度
tempImageviewRect.origin.x = (self.bounds.size.width - tempImageviewRect.size.width) / 2;
self.imageView.frame = tempImageviewRect;
CGRect tempLabelRect = self.titleLabel.frame;
// 文字label的x靠着button左侧(或距离多少)
tempLabelRect.origin.x = 20;
// y靠着图片的下部
tempLabelRect.origin.y = self.imageView.frame.size.height;
// 宽度与button一致,或者自己改
tempLabelRect.size.width = self.bounds.size.width - 40;
// 高度等于button高度减去上方图片高度
tempLabelRect.size.height = self.bounds.size.height - self.imageView.frame.size.height;
self.titleLabel.frame = tempLabelRect;
}
@end