Please help protocol code that does not make sense
我被这句话的一部分难住了:
1 | @property(nonatomic, readonly) NSArray <id<NSFetchedResultsSectionInfo>>*sections |
这个属性属于 NSFetchedResultsController 类。
虽然 NSFetchedResultsSectionInfo 是一个协议,但
语句 NSArray
这种语法实际上并不意味着数组符合任何协议。该符号具有误导性。它只告诉你数组中的值是
文档说明:
The objects in the sections array implement the NSFetchedResultsSectionInfo protocol.
您需要确保它只包含指定类型的值,并且如果您这样做,编译器会告诉您您正在尝试插入不兼容的对象。
你可能想看看这个苹果文档的最后一部分。
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.