‘presentModalViewCintroller’ でiOS6以降ワーニングが出た時の対処法


    [self presentModalViewController:viewController animated:YES];

presentModalViewController、dismissModalViewControllerAnimatedがiOS6で廃止予定になり、
上記を使っている箇所で

‘presentModalViewCintroller:amimated’ is deprecated: first deprecated in iOS6.0

といったwarningが発生します。

ワーニングを解除するには、それぞれ下記に置き換えればOK!


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

この記事を書いた人

福西真奈株式会社ドラプロ 代表取締役
株式会社ドラプロ(http://www.dorapro.co.jp/) 代表取締役。 iPhoneアプリ開発/WEBシステム開発をやっています。
Pocket