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.
このようにobjective-Cで色を設定する方法を知っています[UIColor lightGray]。シルバー、オーシャン、アクアなどのxcodeの一部である色をどのようにコーディングするのだろうか.
[UIColor lightGray]
前もって感謝します。
より多くのカスタム カラーを作成する方法をいくつか知っています。
UIColor *color = [UIColor colorWithRed:(220/255.0) green:(210/255.0) blue(130/255.0) alpha(1)];
これは、緑、赤、青を使用して多くのカスタム カラーを作成する方法の一例です。