//進(jìn)入頁面時(shí)設(shè)置顏色:特別設(shè)置
- (void)viewWillAppear:(BOOL)animated{
? ? [superviewWillAppear:animated];
? ? [self.navigationController.navigationBar setBarTintColor:kWhiteColor];
? ? [self.navigationController.navigationBar setTitleTextAttributes: [NSDictionary dictionaryWithObjectsAndKeys:
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? kBlackColor,NSForegroundColorAttributeName,
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? FONT_SIZE(18),NSFontAttributeName,nil]];
}
//離開頁面時(shí)還原為全局設(shè)置:原本主題
- (void)viewWillDisappear:(BOOL)animated{
? ? [super viewWillDisappear:animated];
? ? [self.navigationController.navigationBar setBarTintColor:KIndexNavgitionColor];
? ? [self.navigationController.navigationBar setTitleTextAttributes: [NSDictionary dictionaryWithObjectsAndKeys:
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? RGBCOLOR(13,13,13),NSForegroundColorAttributeName,
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? FONT_SIZE(18),NSFontAttributeName,nil]];
}