解決ios的UITableView內容無法重新整理的方法

來源:互聯網
上載者:User

   使用UITableView的過程中,若在另一個視圖中修改了與UITableView中某些UITableViewCell相關的內容後,調用popViewController返回這個UITableView時就需要重新載入修改後的資料,預設是不會重新載入UITableViewCell的資料的。

  一般情況下,我們可以通過在UITableViewController.m檔案中的viewWillAppear函數中加入[self.tableView reloadData];這個函數來解決。這個函數會調用cellForRowAtIndexPath這個方法,從而重新載入了UITableViewCell的資料。

  但有時我們會發現,即便調用了reloadData也不能重新整理UITableViewCell的內容。這時候很有可能是因為你調用的popViewController順序有錯誤,即太早調用popViewController這個函數了,因為當調用popViewController這個函數之後,編譯器就會從self.navigationController棧中得到最頂層的ViewController(這裡的UITableViewController),並且將它的view顯示出來,這過程就會調用ViewWillAppear函數等這些初始顯示介面的函數,如果你在popViewController之後才對UITableView中的一些屬性內容進行修改的話,雖然能改變屬性內容的值,但由於UITableView已經顯示出來了,所以新的屬性值在介面中顯示不出來,於是就造成了沒有重新整理內容的假象。

  解決方案:

  將popViewController方法放在修改屬性值的後面調用,見以下代碼(1)。另外,要獲得UITableViewController,因為此時當前的ViewController還沒被pop出來,於是要取棧頂的下一個Controller,見(2)。

  NSArray *allControllers = self.navigationController.viewControllers;

  RenewTableViewController *parent = [allControllers objectAtIndex:[allControllers count]-2]; //(2)

  parent.test=@"test";

  [self.navigationController popViewControllerAnimated:YES]; //(1)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.