ios去掉navigationController和tabBarController里的边框黑线...
分类:
移动开发 时间:
2014-08-13 18:56:07
阅读次数:
234
1、如果设置了self.navigationController.navigationBar 设置了UIBarMetricsLandscapePhone的背景;而没有设置UIBarMetricsDefault的背景,navigationBar会变透明如图所示:navigationBar透明2、上图还...
分类:
移动开发 时间:
2014-08-13 03:32:25
阅读次数:
250
1 改变NavBar颜色:选中Navigation Bar 的Tint属性。选中颜色。2 隐藏“back”按钮: self.navigationItem.hidesBackButton = YES;3 隐藏"NavBar" : self.navigationController.navigation...
分类:
移动开发 时间:
2014-08-04 20:39:47
阅读次数:
228
if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) { self.navigationController.interactivePopGestur...
分类:
移动开发 时间:
2014-08-04 13:56:17
阅读次数:
233
第一种方式: MyViewController *my=[[MyViewController alloc] init]; [self.navigationController pushViewController:my animated:NO]; //因为一个事件循环机制中 ...
分类:
其他好文 时间:
2014-08-01 13:12:01
阅读次数:
142
[self.navigationControllerpopToViewController:[self.navigationController.viewControllersobjectAtIndex:1]animated:YES];或 searchBarViewController *sear....
分类:
移动开发 时间:
2014-08-01 10:46:41
阅读次数:
199
URL Scheme为基础的NavigationController,让ViewController实现松耦合,不依赖使用URLManager提供两个NavigationController,一个WebViewController和一个基础ViewController,可单独使用也可结合使用。UMV...
分类:
其他好文 时间:
2014-08-01 04:38:16
阅读次数:
192
最终效果图:
storyboard示意图:
BeyondViewController.h
//
// BeyondViewController.h
// 18_控制器切换_navigation_push_通过storyboard方式
//
// Created by beyond on 14-7-31.
// Copyright (c) 2014年...
分类:
移动开发 时间:
2014-08-01 00:08:40
阅读次数:
402
self.navigationController.navigationBar.barStyle=UIBaselineAdjustmentNone;
分类:
其他好文 时间:
2014-07-31 21:15:17
阅读次数:
151
[self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:?] animated:YES];或for (UIViewController *temp ...
分类:
其他好文 时间:
2014-07-16 11:56:24
阅读次数:
188