带有部分的表格视图
我即将加载一个包含两个部分的表格视图。数据将来自核心数据。将它们放在两个实体中会更好吗?每个部分有 10 行。 这些部分稍后将增加到 20 个。
I'm about to load a tableview with two sections. The data will be coming from core data. Would it be better to have them in two entities? There are 10 rows in each section.
The sections will at a later stage grow to 20.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会使用带有两个 NSArray(或 NSMutableArray)的 NSDictionary。这样你就可以避免 if 子句。 :)
I would use an NSDictionary with two NSArray (or NSMutableArray). That way you would avoid if clauses. :)