In my app\'s code I am still presenting viewcontrollers modally with presentModalViewController. This is deprecated in iOS 6. Does that mean this method has no effect on devices
If you have
[self presentModalViewController:aController animated:YES];
change it to
[self presentViewController:aController animated:YES completion:nil];