- (void)setup
{
self.titleLabel.textAlignment = NSTextAlignmentCenter;
}
- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
[self setup];
}
return self;
}
- (void)layoutSubviews
{
[super layoutSubviews];
// 调整图片
self.imageView.width = 20;
self.imageView.height = self.imageView.width;
self.imageView.x = (self.width - self.imageView.width) / 2;
self.imageView.y = (self.height - self.imageView.width) / 2 - 10;
// 调整文字
self.titleLabel.x = 0;
self.titleLabel.y = self.imageView.bottom + 5;
self.titleLabel.width = self.width;
self.titleLabel.textAlignment = NSTextAlignmentCenter;
self.titleLabel.height = 20;
}
iOS 任意布局UIButton中的图片与文字
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 前言 之前对于那种上面是图片下面是文字的按钮都是通过一个ImageView、一个Label、一个Button实现的...
- 1、只有文字(默认居中) 1.1 文字居左显示 代码实现: 1.2 文字居右显示 代码实现: 2、只有图片(默认居...
- 文/白朵朵 1. 感觉一夜之间我的朋友圈里突然出现了好多的土豪啊!!一个个全都是年度影响力人物,年支出都有过了千八...