ios开发过程中添加新的视图使用UITabBarControl

//

//  HomeViewController.m

//  UsingTabBarController01

//

//  Created by chen neng on 11-9-5.

//  Copyright 2011 ydtf. All rights reserved.

//


#import "HomeViewController.h"



@implementation HomeViewController

-(void)loadView{

[super loadView];

//一个动态数组,用于作为TabViewControllerviewControllers;

NSMutableArray *viewControllerArray = [NSMutableArray array];

//创建第一个视图初始化

UIViewController *firstVC=[[UIViewController alloc]init];

firstVC.view.backgroundColor=[UIColor redColor];

    //初始化第一个界面的下方的按钮的文字和图标房子文字是red

firstVC.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"Red" image:[UIImage imageNamed:@"index.png"] tag:1000];

    //添加进视图数组中

[viewControllerArray addObject:firstVC];

[firstVC release];

UIViewController* secondVC=[[UIViewController alloc]init];

secondVC.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"blue" image:[UIImage imageNamed:@"settings.png"] tag:2000];

secondVC.view.backgroundColor=[UIColor blueColor];

[viewControllerArray addObject:secondVC];

[secondVC release];

    UIViewController* thirdVC=[[UIViewController alloc]init];

thirdVC.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"yellow" image:[UIImage imageNamed:@"settings.png"] tag:2000];

thirdVC.view.backgroundColor=[UIColor yellowColor];

[viewControllerArray addObject:thirdVC];

[thirdVC release];

self.viewControllers = viewControllerArray;

}

@end

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值