在 UITabBarItem 使用原始圖片.
- 方法1: 在圖片 xcassets, 將 render as 設(shè)定成 original image.

Settings.png
- 方法2: 使用手動(dòng)編碼
UIImage *icon = .......;
self.tabBarItem.image = [icon imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
Before

Before
After

After