UIColor - free Swift example code
About 2 min
UIColor - free Swift example code 관련
UIColor - free Swift example code
Learn Swift coding for iOS with these free tutorials – learn Swift, iOS, and Xcode
Found 6 articles in the Swift Knowledge Base for this category.
How to convert a hex color to a UIColor
Here's a simple extension to
UIColor
that lets you create colors from hex strings. The new method is a failable initializer, which means it returns nil if you don't specify a color in the correct format. It should be a # symbol, followed by red, green, blue and alpha in hex format, for a total of nine characters. For example, #ffe700ff is gold....How to convert a HTML name string into a UIColor
HTML color names let you use familiar titles like 'steel blue' and 'mint cream' rather than hex values, but sadly these standardized names aren't available in iOS – or at least not by default. Fortunately, it's easy to add an extension to
UIColor
that maps these names to hexadecimal color values, then add another extension to convert hex colors to UIColors
. Here's the code:...How to create custom colors using UIColor RGB and hues
Although there are quite a few built-in UIColors, you'll want to create your own very frequently. This can be done in a number of ways, but the most common is specifying individual values for red, green, blue and alpha, like this:...
How to read the red, green, blue, and alpha color components from a UIColor
Creating a
UIColor
from red, green, blue, and alpha (RGBA) is easy enough:...How to use an image for your background color with UIColor(patternImage:)
Nearly all subclasses of
UIView
can have their background color adjusted, but often you’ll find you want to use an image rather than a flat color....How to use semantic colors to help your iOS app adapt to dark mode
When specifying colors for objects in your views, it’s often easier to use the built-in semantic colors of
UIColor
rather than specifying our own custom colors that might not look good in both light and dark mode....