Could someone please outline what exactly this line does?
[self.delegate calendar:self didSelectDate:self.selectedDate];
This line basically is used to set the date on a label dateLabel which is in another class.
CKCalendarView *calendar = [[CKCalendarView alloc] initWithStartDay:startMonday];
calendar.delegate = self;
self.dateFormatter = [[NSDateFormatter alloc] init];
[self.dateFormatter setDateFormat:@"dd/MM/yyyy"];
calendar.selectedDate = [self.dateFormatter dateFromString:@"18/11/2012"];
calendar.minimumDate = [self.dateFormatter dateFromString:@"09/11/2012"];
calendar.maximumDate = [self.dateFormatter dateFromString:@"29/11/2012"];
calendar.frame = CGRectMake(10, 10, 300, 320);
[self.view addSubview:calendar];
self.dateLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, CGRectGetMaxY(calendar.frame) + 4, self.view.bounds.size.width, 24)];
[self.view addSubview:self.dateLabel];
A 'couple line' detailed explanation on what the above line does would be of great help.