如果单击按钮,NSXMLParser 会解析更多项目
我正在使用 NSXMLParser 来解析当前只有 25 个“项目”的 url。然后这些项目将显示在 UITableView 中。但是我想知道如何加载接下来的 25 个项目,然后使用方法在索引路径插入行将它们添加到 UITableView 中。
I am using NSXMLParser to parse a url currently with only 25 'items'. These items are then being shown in a UITableView. However I would like to know how I could load the next 25 items and then add them to the UITableView by using the method insert row at index path.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太明白你的意思。如果我错了,请纠正我。如果你想将对象追加到当前表,那么只需将对象添加到 nsmutablearrat 并重新加载表。
如果您想在特定位置添加接下来的 25 个项目,请使用 nsmutable 数组方法。 addObjectAtIndex 来自 Apple Dev 的类引用 并重新加载表格。
Im not quite getting you.. correct me if Im wrong.. if you want to append the object to current table then just add the objects to nsmutablearrat and reload the table.
and if you want to add the next 25 items at specific location use nsmutable array method. addObjectAtIndex Class References from Apple Dev and reload the table.