Green screen while pushing view controller
NickName:Anton Ask DateTime:2015-06-11T04:25:25

Green screen while pushing view controller

i have a login screen view controller (nib), when user logs in it instantiates storyboard and pushes initial view controller, but while transitioning to this initial vc there is green screen, when transition done main screen appears normally. ![enter image description here][1]

DMapViewController *mapVC = [[UIStoryboard storyboardWithName:@"DMapViewController"
                                                       bundle:nil] instantiateInitialViewController];
[self.navigationController pushViewController:mapVC
                                     animated:YES];

Copyright Notice:Content Author:「Anton」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/30766629/green-screen-while-pushing-view-controller

More about “Green screen while pushing view controller” related questions

Green screen while pushing view controller

i have a login screen view controller (nib), when user logs in it instantiates storyboard and pushes initial view controller, but while transitioning to this initial vc there is green screen, when

Show Detail

last controller's content visible while pushing a new view controller

I am facing a very basic problem while pushing a view controller. When I am pushing a new controller, the last controller's content is visible on screen. I am pushing the new controller as follows:

Show Detail

Is there anyway to show View without pushing it to Nav Controller

I've a question, I want to show a View with out Pushing it to nav controller, it is very similar as with Native email UI, you go to Inbox folder and there you select "Compose" screen, compose scree...

Show Detail

White screen shown when pushing view

Pushing a view controller: func showChatLogForTrainer(trainer: Trainers) { let chatLogVC = ChatLogVC(collectionViewLayout: UICollectionViewFlowLayout()) self.navigationController?.

Show Detail

UI blocks while pushing view controller on to navigation controller

I have just moved my iOS 5 project to iOS 6 environment (since Apple made it mandatory to support 4-inch device compability) and now I am having a bit of a problem while pushing a UIViewController ...

Show Detail

Toolbar buttons flashing (quick fade out in) when pushing view controller animated

When pushing a view controller my toolbar buttons fade out and then in again with the new view. The problem is that i have the same buttons in the next view as the previous so it looks like the but...

Show Detail

View controller in a tabbar is getting black while pushing another view controller in the navigation stack

I am having an application in which 4 view controllers are added to the tabbar. The first view controller is landing page. The view controller is added in to the tab bar by following way.

Show Detail

Getting random crashes while pushing to another view controller

I am getting random crashes while pushing to another view controller.
 
 It was too difficult to find out such a crash, we spent the almost 2-3 days to solve this issue. seems like the crash was du...

Show Detail

Full white screen appears for few seconds before pushing the view controller

I'm getting white screen before pushing the view controller for few seconds then the UIViewController loads. I didn't kept any break points and there is target membership. I attached the screen s...

Show Detail

Issue in presenting view controller after pushing another view controller

I have three view controllers -> A, B, C; A being the initial view controller. Due to some requirement, i am pushing B view contoller over A view contoller. After some processing, I am also pres...

Show Detail