iOS設定tabbar不顯示文字,只顯示圖片

Hhl發表於2017-12-13

首先我們設定tabbarItem的文字為空字串@""

navigationViewController.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"" image:normalImage selectedImage:selectImage];

複製程式碼

然後設定圖片的偏移

navigationViewController.tabBarItem.imageInsets = UIEdgeInsetsMake(5, 0, - 5, 0);

複製程式碼

效果圖

效果圖

相關文章