Pop to root view controller without animation crash for the table view

后端 未结 6 1044
伪装坚强ぢ
伪装坚强ぢ 2021-02-05 19:27

I have 3 view controller in a tab bar controller. Clicking on any tab loads its root view controller in the navigation stack.

e.g. tab1, tab2, and tab3.
The 2nd vi

6条回答
  •  悲&欢浪女
    2021-02-05 20:21

    Jesse's answer works perfect. I just made a slight modification for ARC Support

    - (void)dealloc 
    {
      self.tableView.delegate = nil;
      self.tableView.dataSource = nil;
    }
    

提交回复
热议问题