XCode で警告が表示されます。
'presentModalViewController:animated:' is deprecated: first deprecated in iOS 6.0
このコード行で:
[self presentModalViewController:initialSettingsVC animated:YES];
ドキュメントで提案されているように、次のように置き換えようとしました。
[self presentModalViewController:initialSettingsVC animated:YES completion:nil];
XCodeでエラーが発生しました:
「ViewController」の目に見える @interface がセレクター「presentModalViewController:animated:completion:」を宣言していません
何か案は?