本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- wallimn
- benladeng5225
- ranbuijj
- javashop
- fantaxy025025
- jickcai
- robotmen
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- sam123456gz
- zysnba
- sichunli_030
- gdpglc
- tanling8334
- gaojingsong
- arpenker
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- wjianwei666
- lzyfn123
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
最新文章列表
iOS UINavigationController与UITabBarController的组合使用
1.导航类型
UINavigationController 适用于父子页面的跳转
UITabBarController 适用于平级页面的跳转
2.presentViewController / dismissViewControllerAnimated和pushViewController / popViewController
(1)只有从UINavigationControlle ...
iOS 7 使用 UINavigationController 后导致 UIScollView尺寸变化
迁移 http://aikin.me/2014/03/16/ios7-uinavigationcontroller-uiview/
在 iOS 7 中,如果某个 UIViewController 的 self.view 第一个子视图是 UIScollView, 同时当这个 UIViewController 被 push 或 initWithRootController 成为 UIN ...
【转】UINavigationController使用技巧
,创建并使用一个UINavigationController
UINavigationController *aNav = [[UINavigationController alloc] init];
然后添加一个视图进去,否则导航栏也没有意义的
UIViewController *aView = [[UIView alloc] initWithNibName: (*xib文 ...
重写、修改UINavigationController的back键的title
UIBarButtonItem *barButtonItem = [[UIBarButtonItem alloc] init];
barButtonItem.title = @"buttonName";
self.navigationItem.backBarButtonItem = barButtonItem;
[barButtonItem releas ...
自定义导航栏上的返回按钮UINavigationController
转自:http://blog.csdn.net/kmyhy/article/details/6869135
//.h
#import <UIKit/UIKit.h>
@interface MyNavigationController : UINavigationController
@end
//.m
#import "MyNavig ...
UINavigationController视图切换
实现UINavigationController视图切换
- (void)dismissModalViewControllerAnimated:(BOOL)animated
- (void)presentModalViewController:(UIViewController *)modalViewController animated:(BOOL)animated
- (void) ...
UINavigationController相关一些笔记 2 (纯代码和IB的实现)
上一篇是写了 UINavigationController的特性。这篇记一下两种方式生成的不同。
1.IB实现。 IB实现等于多出一个类来专门做UINavigationController的初始化,相对于代码实现,没什么具体的差别。 创建一个UIViewController的IB,包含一个 NavigationController。
在类中建立 IBOutlet UINavigationC ...
UINavigationController相关一些笔记
apple的例子是将UINavigationController作为window的子对象来加载。
但是实际应用里,首页面很可能是登陆页面等等,即首页面是一个uiview,然后跳转到另外一个uiview,再该view下才是包含了uinavigationcontroller对象。
window+
loginview+
...
通过编程实现UINavigationController 包含 UITableViewController
//应用程序代理
@interface SimpleTableViewAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window; //程序主窗体
UINavigationController *navigationController; //在接口中定义导航控制器
}
@proper ...