1 [[UIImage imageNamed:@"button_textured_30"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 5, 0, 5)];其中Insets这个参数的格式是(top,left,bottom,right),从上、左、下...
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
1.同一个section中 cell 之间 分割线 到屏幕 的距离 是可调的。 _tableview.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0); 即可2.点击cell进入下一个vc,返回时,cell仍然是选中状态,去掉这种选择状态- (void)ta...
分类:
其他好文 时间:
2014-08-06 14:26:01
阅读次数:
177
UIImage *image = [[UIImage imageNamed:@"test.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 10, 0, 10)];其中Insets这个参数的格式是(top,left,bottom,right)...
分类:
移动开发 时间:
2014-07-16 14:00:47
阅读次数:
216
checkBox.contentEdgeInsets =
UIEdgeInsetsMake(10, 10, 10, 10);//设置内容的内边距 checkBox.imageEdgeInsets =
UIEdgeInsetsMake(10, 10, 10, 10);//设置图片的外边距...
分类:
其他好文 时间:
2014-05-21 17:37:07
阅读次数:
272