Имея myArray (NSMutableArray
) как dataSource
с событиями
И пользовательские разделы таблицы:
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
customSections = [[NSMutableArray alloc] init];
//My custom sections
[customSections addObject:@"now"];
[customSections addObject:@"in this day"];
NSString *sectionText = [customSections objectAtIndex:section];
return sectionText;
}
Какая лучшая практика, чтобы закорочить их?
для каждого события у меня есть время начала и время окончания