0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

presentModalViewController:animated is deprecated in iOS 6.0

0
Posted at

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];に変更。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?