13
13

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.

画像の代わりにフォントを使用

Last updated at Posted at 2014-01-16

iOSは組み込みのベクトル形式がないので、アイコン画像等を複数用意するのは割と面倒です。
さらに、サイズや色の微調整の度に画像を作り直すのは不毛な作業としか思えません。

そんなときに便利なのがフォント。OS標準サポートで、サイズも色も自由に変えられます。
NSAttributedStringとして生成することで、UILabelやUIButtonにそのまま設定できます。UIButtonの場合にはsetAttributedTitle:forStateを使うことで、ステートごとにアイコン色を変えることもできます。

さらに文字列ではなく画像として使いたい場合のために、UIImageのカテゴリとしてNSAttributedStringから画像を作るメソッドを作っておくと良い感じです。

安くて、組み込みやすいアイコンフォント

自社ロゴ等のその他データは、適当にフォントにまとめちゃいましょう。

13
13
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
13
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?