study - iOS
ios 8.0 이상 처리해야할 것들
ODING2
2019. 4. 21. 23:19
1) Foreground Notification 옵저버 등록 시 명칭 변경
if ([MSUtil isIOS8OrLater]) {
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleApplicationWillEnterForeground:)
name:UIApplicationDidBecomeActiveNotification
object:nil];
} else {
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleApplicationWillEnterForeground:)
name:UIApplicationWillEnterForegroundNotification
object:nil];
}
2) iOS8이상 UIActionSheet 대신 UIAlertController 사용