I have exported my appery app into Xcode and I am sorting some of the warnings. This warning is a result of presentViewController. Any ideas what should be here? I have three with the same issue.
self.inUse = YES;
Code: Select all
if ([self.viewController respondsToSelector:@selector(presentViewController:::)]) {
[self.viewController presentViewController:navController animated:YES completion:nil];
} else {
[self.viewController presentModalViewController:navController animated:YES];
} Any help would be great.