UITabBarItem 使用原始圖片

在 UITabBarItem 使用原始圖片.

  • 方法1: 在圖片 xcassets, 將 render as 設定成 original image.
Settings.png
  • 方法2: 使用手動編碼
UIImage *icon = .......;
self.tabBarItem.image = [icon imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

Before

UITabBarItem 使用原始圖片_第1张图片
Before

After

UITabBarItem 使用原始圖片_第2张图片
After

你可能感兴趣的:(UITabBarItem 使用原始圖片)