iOS 6.0から、以下の使い方は、警告出る。
[self presentModalViewController:controller animated:YES];
警告:
'presentModalViewController:animated:' is deprecated: first deprecated in iOS 6.0
対応方法:
以下のように変更すれば、警告がなくなる。
[self presentViewController:controller animated:YES completion:nil];
なお、以下も同じの対応方法です。
[self dismissModalViewControllerAnimated:YES];
から
[self dismissViewControllerAnimated:YES completion:nil];に変更。