do tableView.reloadData() in external class

久未见 提交于 2019-12-13 07:49:29

问题


I am doing a Parse query from an external class. This query give me back the array for populate the tableview, so in the viewDidLoad method I call MyClass.load(array) and the async parse method findObjectInBackground return me the array filled but in the time that the findObject retrive me the objects the tableView is already created and I see an empty tableView, I did a fast google search for the problem and I found that I have to use the self.tableView.reloadData() method, I tried it but I am in an external class and the delegate for the tableView is in the tableViewController, there is any way to refresh the tableView from an external Class? If you need some code example just ask it, thank you!

EDIT I'm using Swift 2.0


回答1:


You need to set custom delegate between your external class and ViewControllers.

check for creating custom delegate

Also, you can use NSNotificationCenter for send and post notifications. please check link



来源:https://stackoverflow.com/questions/34262964/do-tableview-reloaddata-in-external-class

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!