Pages

Sunday 28 December 2014

'presentModalViewController:animated:' is deprecated: first deprecated in iOS 6.0










"presentModalViewController" that method is deprecated in iOS 6.0,so Xcode gives warning when your build run on iOS 6.0 and above version..

so simply we can resolve that warning as


Replace

[self presentModalViewController:MenuVC animated:YES completion:nil];

To

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

No comments:

Post a Comment