Skip to content

Instantly share code, notes, and snippets.

@okiess
Created September 25, 2012 14:45
Show Gist options
  • Save okiess/3782361 to your computer and use it in GitHub Desktop.
Save okiess/3782361 to your computer and use it in GitHub Desktop.
View Controller
@implementation NewsViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Tab Bar: Brand new tab item
self.tabBarItem.image = [UIImage imageNamed:@"brandnew"];
self.tabBarItem.selectedImage = [UIImage imageNamed:@"brandnew_selected"];
}
return self;
}
// Your other code
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment