在ios11系统下,如果tableview或者ScrollerView 是从0开始,需要做简单的适配
if (@available(iOS 11.0, *)) {
self.myTableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
}else {
self.automaticallyAdjustsScrollViewInsets = NO;
}
另外:如果在ios11在Environment Variables 配置OS_ACTIVITY_MODE 为disable,则NSLog无打印