Created
September 25, 2012 14:45
-
-
Save okiess/3782361 to your computer and use it in GitHub Desktop.
View Controller
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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