ios - showViewController has long delay -
i using following code create segue between 2 view controllers:
nsstring * storyboardname = @"main"; uistoryboard *storyboard = [uistoryboard storyboardwithname:storyboardname bundle: nil]; uiviewcontroller * vc = [storyboard instantiateviewcontrollerwithidentifier:@"secondpage"]; [self showviewcontroller:vc sender:self];
the issue i'm having there's long delay before view shown. don't have happening in viewdidload
or viewwillappear
, causing delay?
Comments
Post a Comment