iOS·UIButton如何文字在下图片在上

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS·UIButton如何文字在下图片在上相关的知识,希望对你有一定的参考价值。

创建子类继承自UIButton,在layoutSubviews方法中改变文字和图片的位置就可以了,同理,稍作改变,可以写出文字在上图片在下.本文只给出文字在下图片在上的代码

 

 1 -(void)layoutSubviews {
 2     [super layoutSubviews];
 3     
 4     // image center
 5     CGPoint center;
 6     center.x = self.frame.size.width/2;
 7     center.y = self.imageView.frame.size.height/2;
 8     self.imageView.center = center;
 9     
10     //text
11     CGRect newFrame = [self titleLabel].frame;
12     newFrame.origin.x = 0;
13     newFrame.origin.y = self.imageView.frame.size.height + 5;
14     newFrame.size.width = self.frame.size.width;
15     
16     self.titleLabel.frame = newFrame;
17     self.titleLabel.textAlignment = NSTextAlignmentCenter;
18 }

 

效果:

技术分享

 

技术分享

 

以上是关于iOS·UIButton如何文字在下图片在上的主要内容,如果未能解决你的问题,请参考以下文章

uibutton图片在上,文字在下。 图片在左 文字在右

iOS button 里边图片和文字的距离

iOS 调整UIButton 图片(imageView)与文字(titleLabel)的位置

iOS View自定义窍门——UIButton实现上显示图片,下显示文字

自定义UIButton 实现图片和文字 之间距离和不同样式

iOS圆形按钮和图片在上标题在下按钮的实现