I am developing ipad app in which I am using UINavigationController
to push another view controller. Everything is working correctly excpet push animation is not smooth. When I push the view controller , for a second I can see previous screen as I am setting the background color of view to clearColor
.
But this works correctly in iOS 6. Then I noticed UIViewGroupOpacity
in iOS 7 release notes from:
https://developer.apple.com/library/ios/releasenotes/General/RN-iOSSDK-7.0/index.html
I suppose this causing the issue while animating.
Does any one know solution for this issue in iOS 7? Thanks.
Also I don't have any fancy code to push view controller. I am using below code to push
[self.navigationController pushViewController:vc animated:YES];