//更改self.title的字体大小及颜色
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor],UITextAttributeTextColor,[UIFont systemFontOfSize:17],UITextAttributeFont,nil];
[self.navigationController.navigationBar setTitleTextAttributes:attributes];
self.title = @"XXX";
//自定制导航栏
UIView *navView = [[UIView alloc]initWithFrame:CGRectMake(0,0,[[UIScreen mainScreen]bounds].size.with,64)];
navView.backgroundColor = [UIColor colorWithRed:0 green:18.0./255.0 blue:230.0/255.0 alpha:1];
[self.view addSubview:navView];