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)];
这是如何使用绿色红色和蓝色创建许多自定义颜色的一个示例。