在我在填充它的数组中创建一个新对象后,我试图让我在 rootViewController 中的 tableView 重新加载。
我想在 rootVIewController 的 viewDidLoad 中使用以下内容:
[tableView reloadDate];
但我得到了错误:
Use of undeclared identifier "tableView"
我认为这是因为直到 viewDidLoad 方法之后我才声明对象 tableView。那么我还有哪些其他选项可以刷新表格?
谢谢