UITabBarController

简介: UITabBarController
tabBar = [[UITabBarController alloc] init];
    tabBar.delegate = self;
   Page1* blueViewController = [[Page1 alloc] init];
   Page2* yellowViewController = [[Page2 alloc] init];
    NSArray *viewControllerArray = [NSArray arrayWithObjects:blueViewController,yellowViewController,nil];
    tabBar.viewControllers = viewControllerArray;
    tabBar.view.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);
    [self.view addSubview:tabBar.view];
    [viewControllerArray release];
、、、、、、、、、、、、
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
        UITabBarItem *item = [[UITabBarItem alloc] initWithTitle:@"礼品" image:[UIImage imageNamed:@"礼品.png"] tag:1];
        self.tabBarItem = item;
        [item release];
    }
    return self;
}

ios 设置tabbar选中颜色

[self.tabBarController.tabBar setSelectedImageTintColor:[UIColor greenColor]];
相关文章
|
6月前
|
iOS开发 UED 容器
navigationController 的使用详解
navigationController 的使用详解
|
7月前
|
iOS开发 容器
什么是 UINavigationController 和 UITabBarController?它们有什么作用?
什么是 UINavigationController 和 UITabBarController?它们有什么作用?
48 2
UITabBarController 获得selecdIndex
UITabBarController 获得selecdIndex
80 0
UINavigationController和UITabBarController合用。
UINavigationController和UITabBarController合用。
75 0
|
容器
(三)UITabBarController和UITabBar的基本用法
(三)UITabBarController和UITabBar的基本用法
330 0
|
iOS开发
iOS开发之UIView与UIViewController的生命周期总结
iOS开发中,创建View常见的两种方式一个是纯代码,一个是借助于XIB;创建ViewController常见的也有两种方式一个是纯代码,一个是借助于StoryBoard。
1271 0