LoginSignup
4
4

More than 5 years have passed since last update.

あなたのアプリで「まつざきしげるいろ」を使いたいなら

Last updated at Posted at 2013-04-10

facebookを見ていたら「まつざきしげるいろ」なる色の作り方が・・・
iPhoneAppデベロッパーなら誰しも「まつざきしげるいろ」を自分のアプリで使ってみたいと感じるのではと思いUIColorでまつざきしげる色を使う時のコードです。

UIColor+shigeru.h
#import <UIKit/UIKit.h>

@interface UIColor (shigeru)

- (UIColor*) shigeruColor;

@end

UIColor+shigeru.m
#import "UIColor+shigeru.h"

@implementation UIColor (shigeru)

- (UIColor *) shigeruColor {
    return [UIColor colorWithRed:0.627 green:0.251 blue:0.251 alpha:1];
}

@end

呼び出す時は上記のクラスをimportした上で

[UIColor shigeruColor];

と自然に呼び出すことが出来るはずです。

まぁ普通に

[UIColor colorWithRed:0.627 green:0.251 blue:0.251 alpha:1];

これだけ呼び出せばいい話だったりもします。

皆さんも是非「まつざきしげるいろ」を駆使して素敵なデザインのアプリを開発して下さい。

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