• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 请帮助没有意义的协议(protocol)代码

[复制链接]
菜鸟教程小白 发表于 2022-12-13 08:06:18 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我对这句话的一部分感到困惑:

@property(nonatomic, readonly) NSArray <id<NSFetchedResultsSectionInfo>>*sections

此属性属于 NSFetchedResultsController 类。 虽然 NSFetchedResultsSectionInfo 是一个协议(protocol),但 id 是一个必须符合 NSFetchedResultsSectionInfo 协议(protocol)的对象类型。 id 不是协议(protocol),因此将它们括在尖括号中 > 没有意义。 语句 NSArray > 对我来说没有意义,因为你怎么能让对象类型 id 成为 NSArray 类的协议(protocol)。有人可以对此有所了解吗?谢谢。



Best Answer-推荐答案


该语法实际上并不意味着数组符合任何协议(protocol)。该符号具有误导性。它只告诉你 inside 数组的值是 id 并且符合 NSFetchedResultsSectionInfo 协议(protocol)。

documentation状态:

The objects in the sections array implement the NSFetchedResultsSectionInfo protocol.

您需要确保它只包含指定类型的值,并且如果您这样做,编译器会告诉您您正在尝试插入不兼容的对象。

您可能想看看 apple doc 的最后一部分.

If you’re writing an iOS app that uses the Core Data framework, for example, you’ll likely run into the NSFetchedResultsController class. This class is designed to help a data source object supply stored data to an iOS UITableView, making it easy to provide information like the number of rows.

If you’re working with a table view whose content is split into multiple sections, you can also ask a fetched results controller for the relevant section information. Rather than returning a specific class containing this section information, the NSFetchedResultsController class instead returns an anonymous object, which conforms to the NSFetchedResultsSectionInfo protocol. This means it’s still possible to query the object for the information you need, such as the number of rows in a section

Even though you don’t know the class of the sectionInfo object, the NSFetchedResultsSectionInfo protocol dictates that it can respond to the numberOfObjects message.

关于ios - 请帮助没有意义的协议(protocol)代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30873650/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap