UIImage *image = [UIImage imageNamed:@"message_i"];//对图片进行切分 image = [image resizableImageWithCapInsets:UIEdgeInsetsMake(16, 16, 16, 30) resizingMode: ...
分类:
其他好文 时间:
2016-05-06 00:37:19
阅读次数:
123
button.imageEdgeInsets = UIEdgeInsetsMake(0, labelWidth, 0, -labelWidth);button.titleEdgeInsets = UIEdgeInsetsMake(0, -imageWith, 0, imageWith); 获取图片宽 ...
分类:
其他好文 时间:
2016-05-05 21:59:50
阅读次数:
124
** 设置内容距btn边框距离 **/ btn.contentEdgeInsets = UIEdgeInsetsMake(0, 0, 0, 0); /** 将label和imageView看成一个整体 比如将imageview放到label后面 则需要计算 imageview与label相对的位置
分类:
其他好文 时间:
2016-03-17 19:08:57
阅读次数:
145
UIEdgeInsetsMake(CGFloat top, CGFloat left, CGFloat bottom, CGFloat right) <上 左 下 右 > top - 向上 + 向下 letf - 向左 + 向右 bottom - 向下 + 向上 right -向右 +向左
分类:
其他好文 时间:
2016-02-18 13:25:01
阅读次数:
123
[bottomButton setTitleEdgeInsets:UIEdgeInsetsMake(10, -190, 10, 44)]; //上左下右 ||button.contentVerticalAlignment = UIControlContentVerticalAlignmentBo.....
分类:
其他好文 时间:
2016-01-26 20:19:15
阅读次数:
103
IOS8 设置TableView Separatorinset 分割线从边框顶端开始在ios8上 [TableViewsetSeparatorInset:UIEdgeInsetsMake(0,0,0,0)];不起作用经过测试加入下面方法 在ios7 8上都可以正常工作-(void)viewDidLa...
分类:
移动开发 时间:
2016-01-23 01:01:34
阅读次数:
273
在ios8上 [TableViewsetSeparatorInset:UIEdgeInsetsMake(0,0,0,0)];不起作用经过测试加入下面方法 在ios7 8上都可以正常工作-(void)viewDidLayoutSubviews{ if ([self.tableView responds...
分类:
其他好文 时间:
2016-01-18 15:00:30
阅读次数:
133
注:本文翻译自国外iOS开发者Natasha The Robot的一篇博文,链接在此。在iOS应用中,经常会有很多Button有相同的背景图片,却由于处在不同的位置而大小不同(尽管在iOS7中Button已经没有背景图片了)。比如,一个功能为“Save”的Button要比功能为“Submit”要窄一...
分类:
移动开发 时间:
2016-01-12 19:24:06
阅读次数:
211
1 //添加图片不能用backgroundimage2 [btn setImage:image5 forState:0];3 4 //然后5 btn.imageEdgeInsets = UIEdgeInsetsMake(20,20,20,20);6 btn.titleEdgeInsets = UIE...
分类:
其他好文 时间:
2015-12-10 23:17:03
阅读次数:
183
在接触到开源项目 Masonry 后,里面的布局约束的链式写法让我颇感兴趣,就像下面这样:12345678UIEdgeInsetspadding=UIEdgeInsetsMake(10,10,10,10);[view1mas_makeConstraints:^(MASConstraintMaker*...
分类:
其他好文 时间:
2015-11-26 21:03:42
阅读次数:
189