You need to highlight self.fetchedResultsController?.sections in the Array of NSFetchedResultsSectionInfo objects:
if let s = self.fetchedResultsController?.sections as? [NSFetchedResultsSectionInfo]
Then you can pass section to the index and get the number of objects:
if let s = self.fetchedResultsController?.sections as? [NSFetchedResultsSectionInfo] { d = s[section].numberOfObjects }
source share