Skip to content

Instantly share code, notes, and snippets.

View zengyun-hacker's full-sized avatar
🎇
Celebrate New Year

Zeng Yun zengyun-hacker

🎇
Celebrate New Year
  • Alibaba Inc
  • Hangzhou, Zhejiang, China
View GitHub Profile
@zengyun-hacker
zengyun-hacker / Customize title view of navigation bar
Created September 23, 2013 08:54
Customize title view of navigation bar
#define FONT(x) [UIFont systemFontOfSize:x]
#define LOADIMAGE(file,ext) [UIImage imageWithContentsOfFile:[[NSBundle mainBundle]pathForResource:file ofType:ext]]
//set text title
- (void)setNavigationTitle:(NSString *)title{
UILabel *titleLabel = [[UILabel alloc] init];
titleLabel.text = title;
titleLabel.font = FONT(13);
titleLabel.textColor = [UIColor whiteColor];
self.navigationItem.titleView = titleLabel;