Guest User

Untitled

a guest
Aug 20th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. UITableView delgate not called when UIViewController is popped
  2. // If you can include some code it would help as I am a bit uncertain
  3. // about exactly what you are trying to do from the question but
  4. // you should use whichever of these is correct for project:
  5.  
  6. - (void)viewDidLoad {
  7. [super viewDidLoad];
  8. [myTable reloadData];
  9. }
  10.  
  11. - (void)viewDidUnload {
  12. [myTable reloadData];
  13. }
  14.  
  15. - (void)viewWillAppear {
  16. [super viewWillAppear];
  17. [myTable reloadData];
  18. }
  19.  
  20. - (void)viewWillDisappear {
  21. [super viewWillDisappear];
  22. [myTable reloadData];
  23. }
Add Comment
Please, Sign In to add comment