質問

enter image description here

You can see that house picture with shadow and like prerendered icon. How can I delete this effect?

役に立ちましたか?

解決

You need to set both finished and unfinished images on your UITabBarItem otherwise framework will automatically add the shine on it. Here is how you can do it.

[barItem setFinishedSelectedImage:[UIImage imageNamed:@"myimage.png"] withFinishedUnselectedImage:[UIImage imageNamed:@"myimage.png"]];

Please note that both finished and unfinished images are same.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top