谁能告诉我下面的iOS代码是什么意思?它的一段代码来自MBCalendarKit
.
@property (nonatomic, strong) NSMutableDictionary *data;
- (NSArray *)calendarView:(CKCalendarView *)calendarView eventsForDate:(NSDate *)date
{
return [self data][date];
}
NSArray
当全局数据为 anNSMutableDictionary
且本地日期为时,上述函数如何返回 an NSDate
?
是什么[self data][date]
意思?