tableview 在 connectionDidFinishLoading 中重新加载数据时出错(由 json 解析)

Posted

技术标签:

【中文标题】tableview 在 connectionDidFinishLoading 中重新加载数据时出错(由 json 解析)【英文标题】:error with tableview reload data inside connectionDidFinishLoading (parsing by json) 【发布时间】:2013-03-21 06:05:36 【问题描述】:

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

-(void)connectionDidFinishLoading:(NSURLConnection *)connection

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

[self.tableview reloadData];

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

提前致谢。

【问题讨论】:

只需在您的 nib 文件中为 tableview 设置您的 IBOutlet 或检查您已经建立的连接是否正确 感谢您的宝贵时间,您能简要告诉我该怎么做吗?我正在使用故事板。 对不起,我错误地为你做的最后一条评论只是将你的 tableview iboutlet 连接到你的文件所有者 无法运行/构建代码,因为存在错误,所以我猜无法尝试上述建议。但我有 tableview datasurce,delegate 应该连接到 viewCONtroller 或 view 吗?我不知道>请告诉我在哪里连接 tableview。 tableView 数据源及其委托必须连接到文件所有者,即您的 viewController 【参考方案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

【讨论】:

outlets for tableview--- datasource,delegate---is--connected to ViewController2and not class associated with it .In view COntroller the reference outlet both datasource,delegate ------is已连接---->具有引用 ViewController2 的自定义类的表视图 非常感谢您的耐心和时间。 ***.com/questions/11255595/… 最后也试试这个并分享你的结果 真棒 +1 成功了。我不知道为什么我需要创建一个插座并创建一个属性。到目前为止我还没有在任何地方看到这个。不然怎么办? 谢谢你。祝你有美好的一天。

以上是关于tableview 在 connectionDidFinishLoading 中重新加载数据时出错(由 json 解析)的主要内容,如果未能解决你的问题,请参考以下文章

执行 segue 时出错:-[UITextField 长度]:无法识别的选择器发送到实例 [关闭]

iOS tableview上textView在编辑状态时,tableview自动上移的功能

在tableView内部创建tableView

如何在 JavaFx TableView 中添加 TableView 页脚

如何在 swift 中在动态 TableView 中创建动态 tableView?

如何在tableview Cell内设置tableView的自动高度?