设置 Tab Bar Item属性

视图控制器至少需要设置标题和图片,可以在Interface Builder中设置Tab Bar Item,也可以在试图控制器类中覆盖initWithNibName:bundle:方法,示例如下。

-(id)initWithNibName:(NSString *)nibName bundle:(NSBundle *)nibBundle
{
    self = [super initWithNibName:nibName bundle:nibBundle];
    if (self)
    {
        self.title = @"Title";
        self.tabBarItem.image = [UIImage imageNamed:@"image.png"];
    }
    return self;
}

通过设置试图控制器的tabBarItem属性可更改Tab Bar Item的外观。除了title和image,还有badgeValue属性用来设置右上角的文字,比如,在App Store界面显示软件的可更新数等

你可能感兴趣的:(tab,item,Bar)