iOS6 で推奨されてなくなっているメソッド

deprecatedなメソッドがあるようなので、気づいたタイミングで対処。
モーダルビュー画面遷移のコードが推奨されなくなっていたので、新しいメソッドを利用するようにした。

1
2
3
4
5
6
7
 'presentModalViewController:animated:' is deprecated: first deprecated in iOS 6.0
 
- (void)presentViewController:(UIViewController *)viewControllerToPresent animated: (BOOL)flag completion:(void (^)(void))completion NS_AVAILABLE_IOS(5_0);
- (void)dismissViewControllerAnimated: (BOOL)flag completion: (void (^)(void))completion NS_AVAILABLE_IOS(5_0);
 
[self presentViewController:(ビューコントローラ) animated:YES completion: nil];
[self dismissViewControllerAnimated:YES completion:NULL];

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です