1. 程式人生 > >iOS設定tabBar背景顏色

iOS設定tabBar背景顏色

viewDidLoad中設定

//設定tabBar的顏色

    UIView *bgView = [[UIViewalloc] initWithFrame:self.tabBar.bounds];

    bgView.backgroundColor = [UIColorblueColor];

    [self.tabBarinsertSubview:bgView atIndex:0];

self.tabBar.opaque =YES;