문제

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