Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
UIWebview で、背景色が #CBCDCF の html ページを読み込みます。以前の ViewController (この ViewController では UIWebview を使用しません) では、背景色を同じ値 #CBCDCF に設定したいと考えています。どうすればいいですか?
このようなマクロを使用できます
#define HEXCOLOR(c) [UIColor colorWithRed:((c>>24)&0xFF)/255.0 \ green:((c>>16)&0xFF)/255.0 \ blue:((c>>8)&0xFF)/255.0 \ alpha:1.0]
そしてあなたはこれを行うことができます:
[yourViewController setBackgroundColor:HEXCOLOR(0xCBCDCF)]