共用方式為


MKUserTrackingButton.GetAppearance 方法

定義

多載

GetAppearance(UITraitCollection)

傳回具有指定特徵集合之接收者的外觀。

GetAppearance(UITraitCollection, Type[])

傳回具有指定特徵集合和指定容器中之物件的外觀。

GetAppearance<T>()

取得 MKUserTrackingButton 子類別的外觀 Proxy MKUserTrackingButton.MKUserTrackingButtonAppearance

GetAppearance<T>(UITraitCollection)

取得 MKUserTrackingButton 子類別的外觀 Proxy MKUserTrackingButton.MKUserTrackingButtonAppearance

GetAppearance<T>(UITraitCollection, Type[])

取得 MKUserTrackingButton 子類別的外觀 Proxy MKUserTrackingButton.MKUserTrackingButtonAppearance ,此子類別在檢視裝載于指定的階層中時具有指定的特徵集合。

GetAppearance(UITraitCollection)

傳回具有指定特徵集合之接收者的外觀。

public static MapKit.MKUserTrackingButton.MKUserTrackingButtonAppearance GetAppearance (UIKit.UITraitCollection traits);
static member GetAppearance : UIKit.UITraitCollection -> MapKit.MKUserTrackingButton.MKUserTrackingButtonAppearance

參數

傳回

適用於

GetAppearance(UITraitCollection, Type[])

傳回具有指定特徵集合和指定容器中之物件的外觀。

public static MapKit.MKUserTrackingButton.MKUserTrackingButtonAppearance GetAppearance (UIKit.UITraitCollection traits, params Type[] containers);
static member GetAppearance : UIKit.UITraitCollection * Type[] -> MapKit.MKUserTrackingButton.MKUserTrackingButtonAppearance

參數

containers
Type[]

傳回

適用於

GetAppearance<T>()

取得 MKUserTrackingButton 子類別的外觀 Proxy MKUserTrackingButton.MKUserTrackingButtonAppearance

public static MapKit.MKUserTrackingButton.MKUserTrackingButtonAppearance GetAppearance<T> () where T : MapKit.MKUserTrackingButton;
static member GetAppearance : unit -> MapKit.MKUserTrackingButton.MKUserTrackingButtonAppearance (requires 'T :> MapKit.MKUserTrackingButton)

類型參數

T

必須傳回 UIAppearance Proxy 的類型。 這是 MKUserTrackingButton 的子類別。

傳回

指定型別的外觀 Proxy 物件。

備註

在傳回的物件上設定任何外觀屬性會影響類型參數的所有類別和子類別的外觀。

Appearance不同于 屬性,或 AppearanceWhenContainedIn(Type[]) 只處理這個特定類別實例的方法,GetAppearance 所傳回的 Proxy 可用來變更子類別的樣式。

下列範例示範 GetAppearance 方法的運作方式

var myTheme = MKUserTrackingButton.GetAppearance<MyMKUserTrackingButtonSubclass> ();
myTheme.TintColor = UIColor.Red;

如需詳細資訊,請參閱 類別 UIAppearance 的檔。

適用於

GetAppearance<T>(UITraitCollection)

取得 MKUserTrackingButton 子類別的外觀 Proxy MKUserTrackingButton.MKUserTrackingButtonAppearance

public static MapKit.MKUserTrackingButton.MKUserTrackingButtonAppearance GetAppearance<T> (UIKit.UITraitCollection traits) where T : MapKit.MKUserTrackingButton;
static member GetAppearance : UIKit.UITraitCollection -> MapKit.MKUserTrackingButton.MKUserTrackingButtonAppearance (requires 'T :> MapKit.MKUserTrackingButton)

類型參數

T

必須傳回 UIAppearance Proxy 的類型。 這是 MKUserTrackingButton 的子類別。

參數

traits
UITraitCollection

要比對的特徵集合。

傳回

指定型別的外觀 Proxy 物件。

備註

傳回的物件代表 UIAppearance Proxy,開發人員可以在其中設定 MKUserTrackingButton 實例的外觀屬性。

Appearance不同于 屬性,或 AppearanceWhenContainedIn(Type[]) 只處理這個特定類別實例的方法,GetAppearance 所傳回的 Proxy 可用來變更子類別的樣式。

下列範例示範 GetAppearance 方法的運作方式

var myTheme = MKUserTrackingButton.GetAppearance<MyMKUserTrackingButtonSubclass> (myTraits, );
myTheme.TintColor = UIColor.Red;

如需詳細資訊,請參閱 類別 UIAppearance 的檔。

適用於

GetAppearance<T>(UITraitCollection, Type[])

取得 MKUserTrackingButton 子類別的外觀 Proxy MKUserTrackingButton.MKUserTrackingButtonAppearance ,此子類別在檢視裝載于指定的階層中時具有指定的特徵集合。

public static MapKit.MKUserTrackingButton.MKUserTrackingButtonAppearance GetAppearance<T> (UIKit.UITraitCollection traits, params Type[] containers) where T : MapKit.MKUserTrackingButton;
static member GetAppearance : UIKit.UITraitCollection * Type[] -> MapKit.MKUserTrackingButton.MKUserTrackingButtonAppearance (requires 'T :> MapKit.MKUserTrackingButton)

類型參數

T

必須傳回 UIAppearance Proxy 的類型。 這是 MKUserTrackingButton 的子類別。

參數

traits
UITraitCollection

要比對的特徵集合。

containers
Type[]

開發人員想要以容器的形式套用此特定外觀的類型清單。

傳回

指定型別的外觀 Proxy 物件。

備註

傳回的物件代表 UIAppearance Proxy,當這些實例包含在 參數所 containers 指定的階層中時,開發人員可以設定 MKUserTrackingButton 實例的外觀屬性,該實例具有指定的特徵集合。

Appearance不同于 屬性,或 AppearanceWhenContainedIn(Type[]) 只處理這個特定類別實例的方法,GetAppearance 所傳回的 Proxy 可用來變更子類別的樣式。

下列範例示範 GetAppearance 方法的運作方式

var myTheme = MKUserTrackingButton.GetAppearance<MyMKUserTrackingButtonSubclass> (myTraits, typeof (UINavigationBar), typeof (UIPopoverController));
myTheme.TintColor = UIColor.Red;

如需詳細資訊,請參閱 類別 UIAppearance 的檔。

適用於