动态自定义单元 - iPhone
我使用 IB 创建了一个自定义 UITableviewcell,可容纳 1 个用户。如果我需要根据用户数量动态创建相同的单元,应该做什么。任何人都可以帮我解决这个问题吗?
如果数据来自 XML 中的单个用户,我需要显示包含 1 个用户数据的单个单元格。如果数据来自多个用户,我需要显示多个包含数据的单元格。任何帮助表示赞赏。
谢谢
I have created a custom UITableviewcell using IB which holds for 1 user. If i need to create the same cell dynamically based on the number of users, what should be done. Could any one please help me with this.
If the data comes for a single user from XML i need to show a single cell with data for 1 user. If the data comes for multiple users, I need to show multiple cells with data. Any help is Appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
获取所有用户的数组并在 numberOfRowsInSection UITableViewDataSource 方法中发送计数信息,并根据 cellForRowAtIndexPath 方法中的数组填充数据。
Get array of all users and send the send the count information in the numberOfRowsInSection UITableViewDataSource method and populate the data based on the array in cellForRowAtIndexPath method.