如何检查 NSXmlParser 解析完成?

发布于 2024-12-05 10:37:04 字数 209 浏览 0 评论 0原文

在我的项目中,我正在使用 Web 服务并解析来自另一个类中的 Web 服务的数据,并在 tableView 中显示这些数据,它同步工作得很好,但是 我尝试异步实现它,但它没有显示数据,尽管已收到数据,因为当我在模拟器上重新启动应用程序时,它会显示在控制台上,如果我等到在控制台上显示,它会显示是否有任何方法可以检查数据可显示在 tableView 上,以便我可以重新加载 tableview 来显示数据

In my project I am consuming web services and parsing data from web services in another class and showing this data in a tableView it works absolutely fine in synchronously but
I have tried to implement it a asynchronously and it is not showing data although data has been received as it is showing on Console when I restart the app on simulator it will show if I wait it until to show on console is there any way to check data is available to show on tableView so as I can reload tableview to display data

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

不乱于心 2024-12-12 10:37:04

如果您在类中使用 NSXMLParserDelegate ,您可以通过以下委托方法找到它

//Called when the XML document has been finished parsing
    - (void)parserDidEndDocument:(NSXMLParser *)parser
    {

    }

If you use the NSXMLParserDelegate in your class you can find it out through the following delegate method

//Called when the XML document has been finished parsing
    - (void)parserDidEndDocument:(NSXMLParser *)parser
    {

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