In Table View Controller Method -View Will Appear is not executing?
In My Application
1) Login View
2)
-View
-Tab View Controller
-Navigation Caontroller
-Table View Controller---Class Name someTableViewController.h & .m
-Table View
-Navigation Caontroller
-Table View Controller
-Table View
-Navigation Caontroller
-Table View Controller
-Table View
I am Starting from Login View and After successfull login
First the View Controller from 2) is loaded and
from that MY Tab View Controller Table View is Loaded..
Every thing is going fine but
If I debug the Application I can not see the View Will Appear method is executing of
someTableViewController.
View didLoad Works Fine of same .h and .m file.
As I want to reload the Data.
I just have done Delegate and Datasource connection to TableView Controller. I think table View will appear is executing some deleg开发者_StackOverflow中文版ate method?
Is your Application Navigation based? if not what do you do when click on the "Back" button.
Try the following code:
[self.navigationController popViewControllerAnimated:YES];
For DetailView from TableView use the following code:
[self.navigationController pushViewController:detailView_obj animated:YES];
精彩评论