- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc]initWithFrame:[[UIScreen mainScreen]bounds]];
ViewController *mainView = [[ViewController alloc]init];
UINavigationController *navi = [[UINavigationController alloc]initWithRootViewController:mainView];
navi.navigationBar.backgroundColor = [UIColor blueColor];
[self.window setRootViewController:navi];
[self.window makeKeyAndVisible];
return YES;
}
self.navigationController.navigationBar.titleTextAttributes = [NSDictionary dictionaryWithObject:[UIColor whiteColor] forKey:UITextAttributeTextColor]; // --- 字体颜色
[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"BJ.png"] forBarMetrics:UIBarMetricsDefault]; // — 背景色
//此页面已经存在于self.navigationController.viewControllers中,并且是当前页面的前一页面
CViewController *cvc = [self.navigationController.viewControllers
objectAtIndex:self.navigationController.viewControllers.count-
2
];
NSArray *array = self.navigationController.viewControllers;
for (UIViewController *vc in array) {
if ([vc isKindOfClass:[BXXXViewController class]]) {
push VC;
}
或者知道每个界面的指针
[self.navigationController
popToViewController: [self.navigationController.viewControllers
objectAtIndex: ([self.navigationController.viewControllers count] -4)]
animated:YES];
在使用时,根据自己返回层的需要,只要改变一下“-4”这个数字就可以达到目的了
//=====2016年3月17日 增加导航条的变化 Xcode7.2
很多的应用现在都做到了,随着页面的滑动导航条的颜色也会发生变化,现在使用原生的导航条来体现一下基本原理。。。
*在项目属性里设置
View controller-based status bar appearance == NO 默认是YES
才可以改变导航条上20像素位置的状态栏颜色
干货:
本例使用的 UITableView 添加KVO实现监控滑动位置的变化
[_myTable addObserver:self forKeyPath:@"contentOffset" options:NSKeyValueObservingOptionNew| NSKeyValueObservingOptionInitial context:nil];
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary
{
if ([keyPath isEqualToString:@"contentOffset"]) {
[self navChange];
}
}
-(void)navChange
{
if (_myTable.contentOffset.y <= 64) {
self.navigationController.navigationBar.titleTextAttributes = [NSDictionary dictionaryWithObject:[UIColor blueColor] forKey:NSForegroundColorAttributeName];
[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"BJ1.png"] forBarMetrics:UIBarMetricsDefault];
self.title = @"初始导航条";
}
else if (_myTable.contentOffset.y >= 192 )
{
self.navigationController.navigationBar.titleTextAttributes = [NSDictionary dictionaryWithObject:[UIColor whiteColor] forKey:NSForegroundColorAttributeName];
[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"BJ2.png"] forBarMetrics:UIBarMetricsDefault];
self.title = @"导航条最终状态";
// 状态栏颜色为白色
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;
}else
{
self.navigationController.navigationBar.titleTextAttributes = [NSDictionary dictionaryWithObject:[UIColor redColor] forKey:NSForegroundColorAttributeName];
[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"BJ3.png"] forBarMetrics:UIBarMetricsDefault];
self.title = @"导航条中间状态";
// 状态栏颜色为白色
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleDefault;
}
}
上效果图 无图无真相
demo地址:https://github.com/Lian1990/NavColorRamp