1. 程式人生 > >IOS 9.0以上的控制器處理

IOS 9.0以上的控制器處理

    NSString *version = [UIDevice currentDevice].systemVersion;
    if (version.doubleValue >= 9.0 && version.doubleValue < 11.0 )
    {
        // 針對 9.0 以上的iOS系統進行處理
        self.automaticallyAdjustsScrollViewInsets=NO;
    }