iOSの以下のコードが何を意味するのか教えてもらえますか? からのコードですMBCalendarKit。
@property (nonatomic, strong) NSMutableDictionary *data;
- (NSArray *)calendarView:(CKCalendarView *)calendarView eventsForDate:(NSDate *)date
{
return [self data][date];
}
NSArrayグローバル データが でNSMutableDictionaryローカル日付がの場合、上記の関数はどのように を返しNSDateますか?
とは[self data][date]どういう意味ですか?