Code is exectuting but the view is not loading when called form a function?
- by wolverine
I have a viewBased application with the viewController class mainView. In it I am loading various views(different nibs) depending upon certain actions that I do.
I have added a popoverController with a barbutton in the mainView. Its intialized with a tableviewController class named popClass. When I select certain row in the popover, I want the view in my mainView to load someother view(as I do when i do certain actions).
For that I have written a function in mainView Controller class and is calling it from the popOver class. Function and the lines of code are executing but nothing is happening. Even the log lines are printed but no action takes place.
What is the problem? OR is there anyother way to make the view change in mainView by using the popover?