Hi,
When a tableView cell is selected i did
and when the newView's viewDidLoad method lunching I did
but it's happening only one time at runtime,
When I clicked on the back button and did
the view disappear but when I click again on the cell and the newView popup again ,
the "viewDidLoad,viewWillAppear or the viewDidAppear method don't work
even I did on the dealoc method
what is the problem?
thanks
EDIT:
I solved it,
When the back button is hit I changed the view property to nil
When a tableView cell is selected i did
Code:
[naccontroller pushViewController:newView animated:YES];
and when the newView's viewDidLoad method lunching I did
Code:
NsLog(@"Bla");
but it's happening only one time at runtime,
When I clicked on the back button and did
Code:
[self.navigationController popViewControllerAnimated:YES];
the view disappear but when I click again on the cell and the newView popup again ,
the "viewDidLoad,viewWillAppear or the viewDidAppear method don't work
even I did on the dealoc method
Code:
self.view release;
what is the problem?
thanks
EDIT:
I solved it,
When the back button is hit I changed the view property to nil
Last edited by a moderator: