码迷,mamicode.com
首页 >  
搜索关键字:navigationcontroller    ( 445个结果
ios去掉navigationController和tabBarController里的边框黑线
ios去掉navigationController和tabBarController里的边框黑线...
分类:移动开发   时间:2014-08-13 18:56:07    阅读次数:234
ios关于UI适配的一些问题
1、如果设置了self.navigationController.navigationBar 设置了UIBarMetricsLandscapePhone的背景;而没有设置UIBarMetricsDefault的背景,navigationBar会变透明如图所示:navigationBar透明2、上图还...
分类:移动开发   时间:2014-08-13 03:32:25    阅读次数:250
ios开发之NavBar和TarBar使用技巧
1 改变NavBar颜色:选中Navigation Bar 的Tint属性。选中颜色。2 隐藏“back”按钮: self.navigationItem.hidesBackButton = YES;3 隐藏"NavBar" : self.navigationController.navigation...
分类:移动开发   时间:2014-08-04 20:39:47    阅读次数:228
ios7去除手势滑动返回
if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) { self.navigationController.interactivePopGestur...
分类:移动开发   时间:2014-08-04 13:56:17    阅读次数:233
UINavigationcontroller页面跳转动画
第一种方式: MyViewController *my=[[MyViewController alloc] init]; [self.navigationController pushViewController:my animated:NO]; //因为一个事件循环机制中 ...
分类:其他好文   时间:2014-08-01 13:12:01    阅读次数:142
iOS popToViewController具体用法
[self.navigationControllerpopToViewController:[self.navigationController.viewControllersobjectAtIndex:1]animated:YES];或 searchBarViewController *sear....
分类:移动开发   时间:2014-08-01 10:46:41    阅读次数:199
URLManager官方解说
URL Scheme为基础的NavigationController,让ViewController实现松耦合,不依赖使用URLManager提供两个NavigationController,一个WebViewController和一个基础ViewController,可单独使用也可结合使用。UMV...
分类:其他好文   时间:2014-08-01 04:38:16    阅读次数:192
iOS_18_控制器切换_NavigationController_push方式_传递数据
最终效果图: 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
去除NavigationBar下面的线
self.navigationController.navigationBar.barStyle=UIBaselineAdjustmentNone;
分类:其他好文   时间:2014-07-31 21:15:17    阅读次数:151
popToViewController的用法(跳转到你想跳转到的那个控制器)
[self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:?] animated:YES];或for (UIViewController *temp ...
分类:其他好文   时间:2014-07-16 11:56:24    阅读次数:188
445条   上一页 1 ... 41 42 43 44 45 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!