IOS项目开发布局四
时间:2014-03-05 18:09:10
收藏:0
阅读:438
IOS项目开发布局四
在上次框架基础上添加UITabViewController控件和顶部滚动栏,首先看文件布局如下图
1. 在DemMainViewController中添加如下:
- (void)addMainController { _tabController=[[UITabBarController alloc] init]; [_tabController.view setFrame: [self.view bounds]]; NSArray *classStringArray = [NSArray arrayWithObjects:@"DemFirstViewController",@"DemSecondViewController",@"DemThreeViewController",@"DemFourViewController",nil]; NSMutableArray *array = [[NSMutableArray alloc] init]; for (int i = 0; i < [classStringArray count]; i++) { Class c = NSClassFromString([classStringArray objectAtIndex:i]); DemFSTFViewController *fstfViewController = [[c alloc] init]; UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:fstfViewController]; [fstfViewController release]; [array addObject:nav]; [nav release]; } [_tabController setViewControllers:array]; [self.view addSubview:_tabController.view]; }说明:DemFirstViewController、DemSecondViewController、DemThreeViewController和DemFourViewController四个类继承于DemFSTFViewController基类,作为TabBarViewController的四个控制器
2. 在DemFSTFViewController中可以定义一个公有方法如下
- (void)setTitle:(NSString *)title withImageName:(NSString *)imageName { self.title = title; self.tabBarItem.image = [UIImage imageNamed:imageName]; self.navigationItem.title = title; }说明:这个方法可以为每个继承它的子类设置title和tabbarItem。
运行结果如下:
图一
图二
提供项目的下载链接:http://download.csdn.net/detail/chchong1234/6993253
原文:http://blog.csdn.net/chchong1234/article/details/20283341
评论(0)