6
dismissModalViewControllerAnimatedの廃止
XCode 4.5にアップグレードして、iOSアプリをiPhone 5の4インチディスプレイで実行するように更新しましたが、次のようなビルドエラーが発生しますdismissModalViewControllerAnimated:' is deprecated。 [self dismissModalViewControllerAnimated:NO]; 次のように、完了ハンドラー(ただしNULLに設定)を使用して、推奨されるオーバーロードに更新してみました。 [self dismissModalViewControllerAnimated:NO completion:NULL]; しかし、この行は2つのエラーをスローします。 warning: 'TabBarController' may not respond to '-presentModalViewController:animated:completion:' Instance method '-presentModalViewController:animated:completion:' not found (return type defaults to 'id') ありがとう!