Objective-CでCSSでよく使うようなABCDEFFFのようなHex encodeされた形式の文字列からUIColorを生成する方法の紹介です。

objective-c>>
@interface UIColor (HexEncoding)

  • (UIColor*)colorFromString:(NSString*)string;
  • (NSString*)encodeToString;
    @end

@implementation UIColor (HexEncoding)

  • (UIColor*)
    colorFromString:(NSString*)string
    {
    NSScanner *scanner = [NSScanner scannerWithString:string];
    NSUInteger value;
    [scanner scanHexInt:&value];
    CGFloat red = ((value & 0xFF000000) >> 24) / 255.0f;
    CGFloat green = ((value & 0x00FF0000) >> 16) / 255.0f;
    CGFloat blue = ((value & 0x0000FF00) >> 8) / 255.0f;
    CGFloat alpha = ((value & 0x000000FF) >> 0) / 255.0f;
    return [UIColor colorWithRed:red green:green blue:blue alpha:alpha];
    }
  • (NSString*)encodeToString
    {
    const CGFloat *components = CGColorGetComponents(self.CGColor);
    return [NSString stringWithFormat:@"%02x%02x%02x%02x",
    (int)(components[0]*255 + 0.5f),
    (int)(components[1]*255 + 0.5f),
    (int)(components[2]*255 + 0.5f),
    (int)(components[3]*255 + 0.5f)];

}

@end
<<--

わかりやすいように、UIColorにメソッドカテゴリを追加しています。
encodeToStringのほうでは、0.5を足してroundをかけていますが、
状況に応じてfloorにしたりceilにしたりしてください。

また、この例ではComponentsのサイズが4である事を期待しています。
そうではない色を扱うときには問題が発生しますので、ご注意ください。

posted by genki genki on Fri 7 Nov 2008 at 12:10 with 0 comments
Contents rssrss
光ファイバーを二次元振動させて走査するAR用ディスプレイ
因果の取り違え
Swift2's defer for CoffeeScript
mongodb-3.0からcreateIndexのdropDupsが無くなったらしい
mongodb-3.0以降のWiredTigerの設定を動的に変更する方法
一般楕円の高速生成アルゴリズムへの道標
farro mantecatoのレシピ
Droonga関連の記事のまとめ
RuntimeErrorの特定のメッセージに限定してrescueする方法
jQueryでscriptタグを実行せずにappendする
Tags
coffeescriptdefergroongajsmemonodenodejs
Comments rssrss
https://xn--krken21-bn4c.com https://xn--krken21-bn4c.com: Как отличить настоящий маркетплейс от подделки Kra... 05/01 12:20
https://example.com/xkkpsk https://example.com/xkkpsk: Great blog you have here.. It's difficult to find ... 05/01 09:31
https://onlinemo.ir https://onlinemo.ir: جمع‌بندی برای اون گروه از کاربرا که سیستم‌ها... 05/01 00:58
https://xn--mgmarkt9-9db.com https://xn--mgmarkt9-9db.com: Как обезопасить MEGA: настройка менеджера паролей ... 04/30 20:14
https://qeshmtourist.ir https://qeshmtourist.ir: در کل قضیه برای اونایی که می‌خوان وارد بشن س... 04/30 19:31
https://negarinadv.ir https://negarinadv.ir: سلام و عرض ادب، بنده مدتی قبل هنگام گشتن تو اینت... 04/30 18:56
https://gsmcharge.ir https://gsmcharge.ir: در کل قضیه برای کاربران علاقه‌مند به پلتفرم‌... 04/30 13:51
https://azardl.ir https://azardl.ir: در کل برای کاربرایی که در جستجو هستن پلتفرم‌... 04/30 02:42