等待表视图加载,直到填充 NSString
我有一个 UITableview,其中有一个由 NSString 填充的描述单元格,好的。但问题是 UITableView
委托方法是在我用来下载描述的代码之前调用的,因此它不会加载。我该怎么做才能解决这个问题?提前致谢 :)
I have an UITableview
which has a description cell populated by an NSString
, ok. But the problem is that the UITableView
delegate methods are called before the code I use to download the description so it doesn't loads. How can I do something to solve this? thanks in advance :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下载完成后,您可以调用
[self.tableView reloadData];
。You can call
[self.tableView reloadData];
when the download finished.如果您不希望在下载之前显示内容,请维护一个布尔标志并返回 0 行,直到内容下载完毕。
If you don't want the content to appear until you've downloaded, maintain a boolean flag and return 0 rows until the content has been downloaded.