strange issue noticed while upgrading the app to IOS 8.0.2 with xcode 6.
App which moves between viewcontrollers, started getting lag when using the navigationcontroller.pushviewcontroller
It was working fine till IOS 7.1
Here is a temporary fix for now.. had to make the animated:NO instead of animated:YES and the screens are showing now without any delay.
working code till 7.1:
[self.navigationController pushViewController:vhome animated:YES];
had to be changed to
[self.navigationController pushViewController:vhome animated:NO]; to remove the delay while presenting the new screen in IOS 8.0.2
Will update this code once i figure out the issue.
-Bobby
I have the same issue , do you solve it ?
ReplyDeletedispatch_async(dispatch_get_main_queue(), ^{
ReplyDelete// your navigation controller action goes here
});
just add this your problem will solve.