摘要:
适配ios6和ios7 cell宽度问题:方法一: 1 - (void)setFrame:(CGRect)frame 2 { 3 if (iOS7){ 4 [super setFrame:frame]; 5 return; 6 } 7 8 CGRect cellF = frame; 9 cellF.origin.x -= 10;10 cellF.size.width = [UIScreen mainScreen].bounds.size.width + 10 * 2;11 frame = cellF;12... 阅读全文
摘要:
ios7下的app都是全屏的,意思就是所有控制器的view默认都是从屏幕的(0,0)开始。 为了达到全屏效果的app,官方为UIviewController增加了几个属性:1 @property(nonatomic,assign) UIRectEdge edgesForExtendedLayout NS_AVAILABLE_IOS(7_0); // Defaults to UIRectEdgeAll2 @property(nonatomic,assign) BOOL extendedLayoutIncludesOpaqueBars NS_AVAILABLE_IOS(7_0); // Def.. 阅读全文