Skip to content

Instantly share code, notes, and snippets.

@edwardinubuntu
Created January 7, 2011 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edwardinubuntu/769956 to your computer and use it in GitHub Desktop.
Save edwardinubuntu/769956 to your computer and use it in GitHub Desktop.
tableViewDidLoadModel
- (void)tableViewDidLoadModel:(UITableView*)tableView {
TTDPRINT(@"Start.");
NSMutableArray* items = [[NSMutableArray alloc] init];
for (RSSFeed* rssFeed in _feedModel.feeds) {
// ...Handle the subtitle items.
[items addObject:[TTTableSubtitleItem
itemWithText:text subtitle:subTitle URL:accessURL]];
TT_RELEASE_SAFELY(accessURL);
}
self.items = items;
TT_RELEASE_SAFELY(items);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment