Edit

Share via


PHLivePhotoView.GetAppearance Method

Definition

Overloads

GetAppearance(UITraitCollection, Type[])

Gets the appearance for the traits collection and containers

GetAppearance(UITraitCollection)

Gets the appearance for the traits collection.

GetAppearance<T>()

Obtains the appearance proxy PHLivePhotoView.PHLivePhotoViewAppearance for the subclass of PHLivePhotoView.

GetAppearance<T>(UITraitCollection)

Obtains the appearance proxy PHLivePhotoView.PHLivePhotoViewAppearance for the subclass of PHLivePhotoView.

GetAppearance<T>(UITraitCollection, Type[])

Obtains the appearance proxy PHLivePhotoView.PHLivePhotoViewAppearance for the subclass of PHLivePhotoView that has the specified trait collection when the view is hosted in the specified hierarchy.

GetAppearance(UITraitCollection, Type[])

Gets the appearance for the traits collection and containers

public static PhotosUI.PHLivePhotoView.PHLivePhotoViewAppearance GetAppearance (UIKit.UITraitCollection traits, params Type[] containers);
static member GetAppearance : UIKit.UITraitCollection * Type[] -> PhotosUI.PHLivePhotoView.PHLivePhotoViewAppearance

Parameters

containers
Type[]

Returns

Applies to

GetAppearance(UITraitCollection)

Gets the appearance for the traits collection.

public static PhotosUI.PHLivePhotoView.PHLivePhotoViewAppearance GetAppearance (UIKit.UITraitCollection traits);
static member GetAppearance : UIKit.UITraitCollection -> PhotosUI.PHLivePhotoView.PHLivePhotoViewAppearance

Parameters

Returns

Applies to

GetAppearance<T>()

Obtains the appearance proxy PHLivePhotoView.PHLivePhotoViewAppearance for the subclass of PHLivePhotoView.

public static PhotosUI.PHLivePhotoView.PHLivePhotoViewAppearance GetAppearance<T> () where T : PhotosUI.PHLivePhotoView;
static member GetAppearance : unit -> PhotosUI.PHLivePhotoView.PHLivePhotoViewAppearance (requires 'T :> PhotosUI.PHLivePhotoView)

Type Parameters

T

The type for which the UIAppearance proxy must be returned. This is a subclass of PHLivePhotoView.

Returns

appearance proxy object for the specified type.

Remarks

Setting any appearance properties on the returned object will affect the appearance of all classes and subclasses of the type parameter.

Unlike the Appearance property, or the AppearanceWhenContainedIn(Type[]) method which only work on instances of this particular class, the proxies returned by GetAppearance can be used to change the style of subclasses.

The following example shows how the GetAppearance method works

var myTheme = PHLivePhotoView.GetAppearance<MyPHLivePhotoViewSubclass> ();
myTheme.TintColor = UIColor.Red;

For more information, see the documentation for the UIAppearance class.

Applies to

GetAppearance<T>(UITraitCollection)

Obtains the appearance proxy PHLivePhotoView.PHLivePhotoViewAppearance for the subclass of PHLivePhotoView.

public static PhotosUI.PHLivePhotoView.PHLivePhotoViewAppearance GetAppearance<T> (UIKit.UITraitCollection traits) where T : PhotosUI.PHLivePhotoView;
static member GetAppearance : UIKit.UITraitCollection -> PhotosUI.PHLivePhotoView.PHLivePhotoViewAppearance (requires 'T :> PhotosUI.PHLivePhotoView)

Type Parameters

T

The type for which the UIAppearance proxy must be returned. This is a subclass of PHLivePhotoView.

Parameters

traits
UITraitCollection

Trait collection to match.

Returns

appearance proxy object for the specified type.

Remarks

The returned object represents the UIAppearance proxy where developers can set appearance properties for instances of PHLivePhotoView.

Unlike the Appearance property, or the AppearanceWhenContainedIn(Type[]) method which only work on instances of this particular class, the proxies returned by GetAppearance can be used to change the style of subclasses.

The following example shows how the GetAppearance method works

var myTheme = PHLivePhotoView.GetAppearance<MyPHLivePhotoViewSubclass> (myTraits, );
myTheme.TintColor = UIColor.Red;

For more information, see the documentation for the UIAppearance class.

Applies to

GetAppearance<T>(UITraitCollection, Type[])

Obtains the appearance proxy PHLivePhotoView.PHLivePhotoViewAppearance for the subclass of PHLivePhotoView that has the specified trait collection when the view is hosted in the specified hierarchy.

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

Type Parameters

T

The type for which the UIAppearance proxy must be returned. This is a subclass of PHLivePhotoView.

Parameters

traits
UITraitCollection

Trait collection to match.

containers
Type[]

List of types that the developer wishes to have as the containers to apply this particular appearance.

Returns

appearance proxy object for the specified type.

Remarks

The returned object represents the UIAppearance proxy where developers can set appearance properties for instances of PHLivePhotoView that has the specified trait collection when the view is hosted in the specified hierarchy when those instances are contained in the hierarchy specified by the containers parameter.

Unlike the Appearance property, or the AppearanceWhenContainedIn(Type[]) method which only work on instances of this particular class, the proxies returned by GetAppearance can be used to change the style of subclasses.

The following example shows how the GetAppearance method works

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

For more information, see the documentation for the UIAppearance class.

Applies to