iOS6 deprecated

iOS6より画面切り替え系のメソッドでdeprecatedになったものがあります。

- (void)dismissModalViewControllerAnimated:(BOOL)animated
- (void)presentModalViewController:(UIViewController *)modalViewController animated:(BOOL)animated
です。以下のものに置き換えます。
- (void)dismissViewControllerAnimated:(BOOL)flag completion:(void (^)(void))completion
- (void)presentViewController:(UIViewController *)viewControllerToPresent animated:(BOOL)flag completion:(void (^)(void))completion

コメント

このブログの人気の投稿

Swiftのコンパイルエラー寄せ集め

コンパイルエラー覚え書き(Objective-C)

AVAudioSession細かいことまとめ(late 2014)