iOS--UIButton图片在上,文字在下
Posted 囧囧(>_<)
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS--UIButton图片在上,文字在下相关的知识,希望对你有一定的参考价值。
UIButton正常情况下是图片在左,文字在右,调整一下位置变成图片在上,文字在下,这个比较常用
- (void)setup { // 调整图片 self.imageView.xm_x = 0; self.imageView.xm_y = 0; self.imageView.xm_width = self.xm_width; self.imageView.xm_height = self.imageView.xm_width; // 调整文字 self.titleLabel.xm_x = 0; self.titleLabel.xm_y = self.imageView.xm_height; self.titleLabel.xm_width = self.xm_width; self.titleLabel.xm_height = self.xm_height - self.titleLabel.xm_y; }
以上是关于iOS--UIButton图片在上,文字在下的主要内容,如果未能解决你的问题,请参考以下文章