IOS项目开发布局四

时间:2014-03-05 18:09:10   收藏:0   阅读:438

IOS项目开发布局四


在上次框架基础上添加UITabViewController控件和顶部滚动栏,首先看文件布局如下图

bubuko.com,布布扣

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。


运行结果如下:

bubuko.com,布布扣

                                          图一

bubuko.com,布布扣

                                          图二


提供项目的下载链接:http://download.csdn.net/detail/chchong1234/6993253


IOS项目开发布局四,布布扣,bubuko.com

原文:http://blog.csdn.net/chchong1234/article/details/20283341

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!