Skip to content

Instantly share code, notes, and snippets.

@kerin
Created November 27, 2012 13:24
Show Gist options
  • Save kerin/4154215 to your computer and use it in GitHub Desktop.
Save kerin/4154215 to your computer and use it in GitHub Desktop.
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
self.genres = @{
@"": @"All",
@"004bf6c9a40003140292e97330236c53": @"Action",
@"dc1d2a4d591857f0a0dd38b4ebcf5a72": @"Adventure",
@"d6b6b668dbca9d4fe774bb654226ebe3": @"Animation",
@"64e4aca4297806247f62a7b5f8cbd3df": @"Children",
@"e6b99f24d056d03f20b4651f79fc640e": @"Comedy",
@"c967a0dbb29151be23e4d79805a1da02": @"Crime",
@"0c27633621a2706c5bf31d3d67ee74ec": @"Documentary",
@"205b8c9a6b18d476abc94908e0280ea5": @"Drama",
};
}
return self;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment