Translate

bloggerads內文

2017年11月23日 星期四

IOS- IOS11 程式碼持續更新..

最近遇到很多在IOS 11 程式碼失效的問題,持續更新:


1.automaticallyAdjustsScrollViewInsets失效
改成:
 if (@available(iOS 11.0, *)) {
            view.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
        else {
            viewController.automaticallyAdjustsScrollViewInsets = NO;
        }



2.CLLocationManager 失效,系統無法彈出

保留原本的值,在Info.plist新增

1.NSLocationWhenInUseUsageDescription

2.NSLocationAlwaysAndWhenInUsageDescription

沒有留言:

張貼留言