Unintended table reload/refresh with some delay

后端 未结 2 2041
我寻月下人不归
我寻月下人不归 2021-01-24 23:52

Xcode 6 - beta 6/7: I\'ve created a iOS 8 (Swift) blog reader app with an overview (table view) and a detail view (web view) screen. If there\'s internet connection the app, whe

2条回答
  •  悲哀的现实
    2021-01-25 00:07

    You can also reload UITableView like this

    self.tblMainTable.performSelectorOnMainThread(Selector("reloadData"), withObject: nil, waitUntilDone: true)
    

    As I mentioned here

提交回复
热议问题