iOS--UITableView 向上偏移

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

 

#define kIsIOS7            ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0)

 

if (kIsIOS7) //也就是iOS7以后的系统
    {
        self.edgesForExtendedLayout = UIRectEdgeNone;
        self.extendedLayoutIncludesOpaqueBars = YES;
        self.automaticallyAdjustsScrollViewInsets = NO;
        
    }

转载于:https://my.oschina.net/huangyn/blog/909832

你可能感兴趣的:(iOS--UITableView 向上偏移)