To get the title displayed in the detailview replace in
RootViewController.m
Code:
- (void)tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
detailViewController.detailItem = [NSString stringWithFormat:@"Row %d", indexPath.row];
with
detailViewController.detailItem = [[[aTableView cellForRowAtIndexPath:indexPath] textLabel] text];
See if you can work out displaying the year. If not, I'll post it later.
Bob