1

我有一个带有自定义表格视图单元格的表格视图控制器和之后

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

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

[self.tableview reloadData];

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

提前致谢。

4

1 回答 1

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
于 2013-03-21T06:34:29.917 回答