iOS设置tabbar不显示文字,只显示图片

首先我们设置tabbarItem的文字为空字符串@""

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

然后设置图片的偏移

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

效果图

iOS设置tabbar不显示文字,只显示图片_第1张图片
效果图

你可能感兴趣的:(iOS设置tabbar不显示文字,只显示图片)