- I was in the AUIController ,the navigationController.navigationBar.alpha == 0.500
- I pressed the home button .
- I clicked the appIcon get Back to AUIController. the navigationController.navigationBar.alpha to 1.000
how can I do to keep the navigationController.navigationBar's alpha = 0.5000 ;
I had try ..
AUIController : UIViewController <...,UINavigationControllerDelegate>
- (void) navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated {
if (viewController == self) {
//NSLog(@"self");
//self.navigationController.navigationBar.tintColor = [UIColor colorWithRed:0.000 green:0.000 blue:0.000 alpha:1.000];
self.navigationController.navigationBar.alpha = 0.500;
self.navigationController.navigationBar.translucent = YES;
} else {
self.navigationController.navigationBar.alpha = 1.000;
self.navigationController.navigationBar.translucent = NO;
}
}
But when the app become active ,the alpha 0.50 become 1.00 willShowViewController not be called
You can use KVO to do that. In
viewDidLoad
ofAUIController
add this code[self.navigationController.navigationBar addObserver:self forKeyPath:@"alpha" options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld context:(__bridge void *)(self)];
and implement this function: