gpt4 book ai didi

iphone - 从 uitabbaritem 图像中删除蓝色轮廓

转载 作者:可可西里 更新时间:2023-11-01 06:11:48 25 4
gpt4 key购买 nike

I have changed the tabBar.selectedImageTintColor to my own purlple color however when the tabbar item is selected there is a bright blue line that surrounds the outside of the image which is now purple..

这看起来相当糟糕,所以现在我正试图找到一种方法来删除它或将其更改为更匹配的颜色。

但是我不知道该怎么做,希望有人能告诉我。

这就是我说的蓝线

enter image description here

这就是我将图像选择颜色更改为紫色的方式...

 myTabBar.selectedImageTintColor = [UIColor colorWithRed:49.0/255.0 green:0.0/255.0 blue:98.0/255.0 alpha:0.95];

另一个放大了 tabbaricon 的蓝色轮廓的例子

enter image description here

最佳答案

在 iOS 5 中,您可以设置外观方法。

完全按照您希望的方式创建未选择和已选择的图像,然后 setFinishedSelectedImage: withFinishedUnselectedImage: iOS 不会对您通过此方法提供的图像应用任何格式.

UIImage *selectedImage = [UIImage imageWithName:@"my_finished_selected_image"];
UIImage *unselectedImage = [UIImage imageWithName:@"my_finished_unselected_image"];
[tabBarItem setFinishedSelectedImage:selectedImage withFinishedUnselectedImage:unselectedImage];

关于iphone - 从 uitabbaritem 图像中删除蓝色轮廓,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10925377/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com