tableview重新加载connectionDidFinishLoading内的数据的错误(由json解析)

时间:2013-03-21 06:05:36

标签: ios uitableview ios5 ios6

我有一个带有自定义tableview单元格的tableview的视图控制器,并且在

之后
-(void)connectionDidFinishLoading:(NSURLConnection *)connection
{}

它给出了这个错误:在使用下面的代码后,在'ViewController2 *'类型的对象上找不到属性'tableview',没有它,数据不会显示在tableview中。

[self.tableview reloadData];

我无法弄清楚如何解决它。请帮助我。我将非常感谢你的帮助。

提前致谢。

1 个答案:

答案 0 :(得分:1)

上述错误的可能性

     1) Your Xib would not have been connected with your ViewController2
     2) You would have not connected your tableView IBOutlet to your xib
     3) In case if you have not @synthesize it if you have declared it as a property
     4) If all the above you did correctly just clean your Xcode and run