iOS 版本判断

苹果新出的版本号判断,不用在获取当前设备了。

iOS 11 scrollView偏移64px

判断当前系统大于等于iOS 11

if (@available(iOS 11.0, *)) {

        _content.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;

    } else {

        self.automaticallyAdjustsScrollViewInsets = NO;

    }

你可能感兴趣的:(iOS 版本判断)