Tutorial: Including Navigation Bars - How to make expanding/shrinking views on iPhone SDK
Loading...
3,887
Loading...
Uploader Comments (abgapps)
see all
All Comments (5)
-
hy i have a request to !!! :))) hot to make this: main view--button navigation controller 1 and main view -- button-- navigation controller 2.. NOT TAB BAR!! jast 2 buttons in main view ,one for nav 1 and second for nav 2 ! pleasee help
-
thanks for these tutorials, they're awesome!
How do you keep the facebook style for the application? As in, the first view is a menu WITHOUT a navigation bar, but all of the other views DO have one?
-
@abgapps thanks for your prompt response will try it out !
Loading...
hi there abgapps thumbs up for your video !
do you have a way to change instead of facebook , i can put a picture (size of the naviation bar)?
AlsonIsHere 11 months ago
@AlsonIsHere In your Application Delegate .m, paste this right at the bottom - underneath the @end.
"@implementation UINavigationBar (UINavigationBarCategory)
- (void)drawRect:(CGRect)rect { UIColor *color = [UIColor blackColor];
UIImage *img = [UIImage imageNamed: @"nav.png"]; [img drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)]; self.tintColor = color;
}
@end"
Then put an image in your resources called nav.png and that should work.
abgapps 11 months ago