博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IOSTips:UIButton 设置图片文字垂直排列
阅读量:6155 次
发布时间:2019-06-21

本文共 1682 字,大约阅读时间需要 5 分钟。

经过一下午的查阅资料及尝试,最终解决了在图片和文字垂直排列的情况下,如果文字长度变化会导致图片位置变动的问题,最开始采用了网上比较多的做法,做法如下:

c@interface UIButton (UIButtonExt)  - (void)centerImageAndTitle:(float)space;  - (void)centerImageAndTitle;  @end  @implementation UIButton (UIButtonExt)  - (void)centerImageAndTitle:(float)spacing  {          // get the size of the elements here for readability      CGSize imageSize = self.imageView.frame.size;      CGSize titleSize = self.titleLabel.frame.size;      // get the height they will take up as a unit      CGFloat totalHeight = (imageSize.height + titleSize.height + spacing);      // raise the image and push it right to center it      self.imageEdgeInsets = UIEdgeInsetsMake(- (totalHeight - imageSize.height), 0.0, 0.0, - titleSize.width);      // lower the text and push it left to center it      self.titleEdgeInsets = UIEdgeInsetsMake(0.0, - imageSize.width, - (totalHeight - titleSize.height),0.0);      }  - (void)centerImageAndTitle  {      const int DEFAULT_SPACING = 6.0f;      [self centerImageAndTitle:DEFAULT_SPACING];   }  @end

后面经过测试,如果button的文字长度变更,会导致图片位置变化,经过多次修改UIEdgeInsets的值也没有达到期望效果,最终采用集成UIButton类,重写layoutSubviews函数实现,特将成果记录一下,以便后续查阅

c-(void)layoutSubviews {    [super layoutSubviews];    // Center image    CGPoint center = self.imageView.center;    center.x = self.frame.size.width/2;    center.y = self.imageView.frame.size.height/2;    self.imageView.center = center;    //Center text    CGRect newFrame = [self titleLabel].frame;    newFrame.origin.x = 0;    newFrame.origin.y = self.imageView.frame.size.height + 5;    newFrame.size.width = self.frame.size.width;    self.titleLabel.frame = newFrame;    self.titleLabel.textAlignment = UITextAlignmentCenter;}

转载地址:http://rrbfa.baihongyu.com/

你可能感兴趣的文章
jQuery最佳实践
查看>>
centos64i386下apache 403没有权限访问。
查看>>
jquery用法大全
查看>>
PC-BSD 9.2 发布,基于 FreeBSD 9.2
查看>>
网卡驱动程序之框架(一)
查看>>
css斜线
查看>>
Windows phone 8 学习笔记(3) 通信
查看>>
Revit API找到风管穿过的墙(当前文档和链接文档)
查看>>
Scroll Depth – 衡量页面滚动的 Google 分析插件
查看>>
Windows 8.1 应用再出发 - 视图状态的更新
查看>>
自己制作交叉编译工具链
查看>>
Qt Style Sheet实践(四):行文本编辑框QLineEdit及自动补全
查看>>
[物理学与PDEs]第3章习题1 只有一个非零分量的磁场
查看>>
深入浅出NodeJS——数据通信,NET模块运行机制
查看>>
onInterceptTouchEvent和onTouchEvent调用时序
查看>>
android防止内存溢出浅析
查看>>
4.3.3版本之引擎bug
查看>>
SQL Server表分区详解
查看>>
使用FMDB最新v2.3版本教程
查看>>
SSIS从理论到实战,再到应用(3)----SSIS包的变量,约束,常用容器
查看>>