UIColor.FromHSBA(nfloat, nfloat, nfloat, nfloat) 方法

定义

使用色调、饱和度、亮度和 alpha 分量创建颜色。

[Foundation.Export("colorWithHue:saturation:brightness:alpha:")]
public static UIKit.UIColor FromHSBA (nfloat hue, nfloat saturation, nfloat brightness, nfloat alpha);
static member FromHSBA : nfloat * nfloat * nfloat * nfloat -> UIKit.UIColor

参数

hue
nfloat

色调分量值从 0.0 到 1.0f。

saturation
nfloat

饱和度分量值从 0.0 到 1.0f

brightness
nfloat

亮度分量值从 0.0 到 1.0f。

alpha
nfloat

Alpha (透明度) 值从 0.0 到 1.0f。

返回

属性

注解

这可以从后台线程使用。

适用于