博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2016-11 备忘录
阅读量:5962 次
发布时间:2019-06-19

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

  hot3.png

UIButton设置左文字右图片

os8下 文字和图片重叠了,该怎么处理?原来的代码如下

_qyButton = [UIButton buttonWithType:UIButtonTypeCustom];

 _qyButton.frame = CGRectMake(0, 0, kDeviceWidth/3-4, 40);

 [_qyButton setTitle:[_qyArray objectAtIndex:0]  forState:UIControlStateNormal];

[_qyButton layoutIfNeeded];//添加刷新布局

 [_qyButton setTitleColor:[UIColor darkGrayColor] forState:UIControlStateNormal];

[_qyButton addTarget:self action:@selector(changeQy:) forControlEvents:UIControlEventTouchUpInside];

 [_qyButton setImage:[UIImage imageNamed:@"arrow_down"] forState:UIControlStateNormal];

[_qyButton setTitleEdgeInsets:UIEdgeInsetsMake(0, 10, 0, 10)];

[_qyButton setImageEdgeInsets:UIEdgeInsetsMake(0, _qyButton.titleLabel.bounds.size.width+paddingWidth,0, -_qyButton.titleLabel.bounds.size.width-paddingWidth)];

 

转载于:https://my.oschina.net/sccx/blog/791234

你可能感兴趣的文章
Convert Url to InetAddress
查看>>
oracle 限制特定ip登录
查看>>
解酒方法
查看>>
vi 命令
查看>>
1.1
查看>>
[logstash-input-redis]插件使用详解
查看>>
优化应用的电池寿命(笔记)-1
查看>>
SSH Secure Shell Client
查看>>
JFinal源码分析------初始化那些事儿
查看>>
处理 允许远程协助连接这台计算机 灰色
查看>>
使用Jquery 加载页面时调用JS
查看>>
css+div+jquery弹出层
查看>>
求职相关(链接,不定期更新)
查看>>
pdo 连接数据库 报错 could not find driver 解决方法
查看>>
设计模式之策略模式
查看>>
JVM介绍
查看>>
Qt中使用QToolBox实现抽屉效果
查看>>
双活数据中心建设之光大实践
查看>>
张军-大数据的理解与分布式进化计算方法
查看>>
dubbo remoting(2)
查看>>