iOS6で、presentModalViewControllerがdeprecatedになっていて、警告がでる。
iOS5から使えるpresentViewControllerを使えばよいらしい。
[self presentModalViewController: viewController animated:YES];
これが警告がでるので、
[self presentViewController: viewController animated:YES completion:nil];
に変える。complettionは、ブロックを渡して完了処理を記述できる。