LoginSignup
11
11

More than 5 years have passed since last update.

iOSにおけるUIColorのカテゴリ管理

Posted at

僕はiOSのプロジェクトを作った後には必ず、UIColor + App というカテゴリを作る。
そしてアプリで使う色はすべて、このクラスで管理する。
参考したのはbootstrapのless。

こんな感じで定義します。

@interface UIColor (App)
+ (UIColor *)accentColor;
+ (UIColor *)keyColor;
+ (UIColor *)appBackgroundColor;
+ (UIColor *)textColor;
@end

そして、アプリで使う画像なんかもUIImage + App を作ってやってます。

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