UITabBarController *barController = [[UITabBarController alloc] init]; //為barController添加四個viewController barController.viewControllers = @[first,second,third,fourth]; //設置背景圖片,@"barBackgound"是一張全通道全透明的圖片 [barController.tabBar setBackgroundImage:[UIImage imageNamed:@"barBackground"]]; //邊界線透明化 barController.tabBar.shadowImage = [[UIImage alloc]init];
效果如下:
navigationController的navigationBar也可以使用同樣的方法實現全透明背景
