init(colors:)
Initializes a newly allocated gradient object with an array of colors.
Declaration
convenience init?(colors colorArray: [NSColor])Parameters
- colorArray:
An array of
NSColorobjects representing the colors to use to initialize the gradient. There must be at least two colors in the array. The first color is placed at location 0.0 and the last at location 1.0. If there are more than two colors, the additional colors are placed at evenly spaced intervals between the first and last colors.
Return Value
The initialized NSGradient object.