等待表视图加载,直到填充 NSString

发布于 2024-11-13 01:43:56 字数 133 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

赠我空喜 2024-11-20 01:43:56

下载完成后,您可以调用[self.tableView reloadData];

You can call [self.tableView reloadData]; when the download finished.

脸赞 2024-11-20 01:43:56

如果您不希望在下载之前显示内容,请维护一个布尔标志并返回 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文