setoya-blog

システム開発技術、データ分析関連でお勉強したことや、山奥生活を綴る、テンション低めなブログです。

iOS6からpresentModalViewControllerはdeprecatedに

iOS6で、presentModalViewControllerがdeprecatedになっていて、警告がでる。

iOS5から使えるpresentViewControllerを使えばよいらしい。

[self presentModalViewController: viewController animated:YES];

これが警告がでるので、

[self presentViewController: viewController animated:YES completion:nil];

に変える。complettionは、ブロックを渡して完了処理を記述できる。