我正在使用一个名为 MNCalendar 的 GitHub 存储库,我想调用一些单元格。现在,这就是我的做法。
MNCalendarViewDayCell *cell = [self.collectionView cellForItemAtIndexPath:indexPath];
MNCalendarViewDayCell *cell = (MNCalendarViewDayCell*)[self.collectionView cellForItemAtIndexPath:indexPath];
第一行给了我一个关于它是指向 UICollectionViewCell 的 MNCalendarViewDayCell 指针的问题,但另一行很好。这里的引擎盖下发生了什么,为什么底部是正确的?
不是严重的错误,只是一个问题,只是想知道并尝试从中学习一些东西:)