码迷,mamicode.com
首页 >  
搜索关键字:uiedgeinsetsmake    ( 55个结果
iPhone图片拉伸:resizableImageWithCapInsets
1 [[UIImage imageNamed:@"button_textured_30"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 5, 0, 5)];其中Insets这个参数的格式是(top,left,bottom,right),从上、左、下...
分类:Windows程序   时间:2014-08-23 09:59:40    阅读次数:294
UICollectionView的使用
ViewController.h #import @interface ViewController : UIViewController @property (strong, nonatomic)UICollectionView *collectionView; @end ViewController.m #import "ViewController.h" @interface...
分类:其他好文   时间:2014-08-18 16:32:02    阅读次数:170
UITableview 使用的小知识点
1.同一个section中 cell 之间 分割线 到屏幕 的距离 是可调的。 _tableview.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0); 即可2.点击cell进入下一个vc,返回时,cell仍然是选中状态,去掉这种选择状态- (void)ta...
分类:其他好文   时间:2014-08-06 14:26:01    阅读次数:177
iOS 图片拉伸 resizableImageWithCapInsets
UIImage *image = [[UIImage imageNamed:@"test.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 10, 0, 10)];其中Insets这个参数的格式是(top,left,bottom,right)...
分类:移动开发   时间:2014-07-16 14:00:47    阅读次数:216
UIButton
checkBox.contentEdgeInsets = UIEdgeInsetsMake(10, 10, 10, 10);//设置内容的内边距 checkBox.imageEdgeInsets = UIEdgeInsetsMake(10, 10, 10, 10);//设置图片的外边距...
分类:其他好文   时间:2014-05-21 17:37:07    阅读次数:272
55条   上一页 1 ... 4 5 6
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!