Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您可以看到带有阴影的房子图片和预渲染图标。如何删除此效果?
您需要在 UITabBarItem 上设置已完成和未完成的图像,否则框架将自动为其添加光泽。这是你如何做到的。
[barItem setFinishedSelectedImage:[UIImage imageNamed:@"myimage.png"] withFinishedUnselectedImage:[UIImage imageNamed:@"myimage.png"]];
请注意,完成和未完成的图像是相同的。