75
56

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[Swift]UIImageのレンダリングモードまとめ

Last updated at Posted at 2015-03-05

ナビゲーションバー周りにオリジナル画像を設定すると、画像が一色に塗りつぶされていて「?」となりました。
調べてみたところ、UIImageにはレンダリングモードというものがあるようなのでメモしておきます。

レンダリングモード(UIImageRenderingMode)とは

UIImageには3種類のレンダリングモードオプションがあります(iOS 7以降)。

オプション 内容
UIImageRenderingModeAlwaysOriginal オリジナル画像を描画する
UIImageRenderingModeAlwaysTemplate テンプレート画像を描画する
UIImageRenderingModeAutomatic コンテキスト毎のレンダリング(デフォルト)

次のスクリーンショットが、オリジナルのボタン画像がテンプレート画像で描画されたナビゲーションバーです。何も指定しないと、このようにオリジナル画像がtintColorで塗りつぶされます。

スクリーンショット 2015-02-24 16.26.08.png

下が、オリジナル画像で表示させた場合です。

スクリーンショット 2015-02-24 16.25.09.png

UIImageRenderingModeAutomaticでは、バー周り(ナビゲーションバー、タブバー)のボタンにUIImageを設定すると、テンプレート画像が用いられます。他のビューではオリジナル画像が使用されます。

続いて、オリジナル画像オプションを指定する方法を記述します。

レンダリングモードのオプション指定

指定なしでのUIImageオブジェクト生成。Automaticオプションでオブジェクトが生成されます。

// オプション指定なし
let buttonImage = UIImage(named:"button.png")?

オリジナル画像を使用するために、オプションを指定します。

// オリジナル画像オプション指定
let buttonImage = UIImage(named:"button.png")?.imageWithRenderingMode(UIImageRenderingMode.AlwaysOriginal)

上記はほんの少し省略した書き方もできます。

// オリジナル画像オプション指定(省略版)
let buttonImage = UIImage(named:"button.png")?.imageWithRenderingMode(.AlwaysOriginal)

その他

  • 特にタブバーでオリジナル画像を用いる場合、選択時と非選択時用の画像をそれぞれ設定する必要があるようです。
  • 初めてのQiita投稿で、大変緊張しました。
75
56
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
75
56

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?