[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];