UIColor.FromName 方法

定义

重载

FromName(String)

从具有指定名称的资产中创建并返回一个新的颜色对象,该对象在指定资产中具有域。

FromName(String, NSBundle, UITraitCollection)

从具有指定捆绑包中指定名称的资产中创建并返回一个新的颜色对象,该对象的范围位于指定的特征集合中。

FromName(String)

从具有指定名称的资产中创建并返回一个新的颜色对象,该对象在指定资产中具有域。

[Foundation.Export("colorNamed:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static UIKit.UIColor FromName (string name);
static member FromName : string -> UIKit.UIColor

参数

name
String

应用程序捆绑包中颜色资产的名称。

返回

属性

注解

(此节点的更多文档即将)

这可以从后台线程使用。

适用于

FromName(String, NSBundle, UITraitCollection)

从具有指定捆绑包中指定名称的资产中创建并返回一个新的颜色对象,该对象的范围位于指定的特征集合中。

[Foundation.Export("colorNamed:inBundle:compatibleWithTraitCollection:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static UIKit.UIColor FromName (string name, Foundation.NSBundle inBundle, UIKit.UITraitCollection compatibleWithTraitCollection);
static member FromName : string * Foundation.NSBundle * UIKit.UITraitCollection -> UIKit.UIColor

参数

name
String

颜色资产的名称。

inBundle
NSBundle

包含命名颜色资产的捆绑包。

此参数可以为 null

compatibleWithTraitCollection
UITraitCollection

指定域的特征集合。

此参数可以为 null

返回

属性

注解

(此节点的更多文档即将)

这可以从后台线程使用。

适用于