UITabBar.GetAppearance 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
GetAppearance(UITraitCollection) |
지정된 |
GetAppearance(UITraitCollection, Type[]) |
지정된 |
GetAppearance<T>(UITraitCollection, Type[]) |
뷰가 지정된 계층에서 호스트될 때 지정된 특성 컬렉션이 있는 UITabBar의 하위 클래스에 대한 모양 프록시 UITabBar.UITabBarAppearance 를 가져옵니다. |
GetAppearance<T>() |
UITabBar의 하위 클래스에 대한 모양 프록시 UITabBar.UITabBarAppearance 를 가져옵니다. |
GetAppearance<T>(UITraitCollection) |
UITabBar의 하위 클래스에 대한 모양 프록시 UITabBar.UITabBarAppearance 를 가져옵니다. |
GetAppearance(UITraitCollection)
지정된 traits
에 대한 모양 프록시를 반환합니다.
public static UIKit.UITabBar.UITabBarAppearance GetAppearance (UIKit.UITraitCollection traits);
static member GetAppearance : UIKit.UITraitCollection -> UIKit.UITabBar.UITabBarAppearance
매개 변수
- traits
- UITraitCollection
반환
적용 대상
GetAppearance(UITraitCollection, Type[])
지정된 traits
에 대한 모양 프록시를 반환합니다.
public static UIKit.UITabBar.UITabBarAppearance GetAppearance (UIKit.UITraitCollection traits, params Type[] containers);
static member GetAppearance : UIKit.UITraitCollection * Type[] -> UIKit.UITabBar.UITabBarAppearance
매개 변수
- traits
- UITraitCollection
- containers
- Type[]
반환
적용 대상
GetAppearance<T>(UITraitCollection, Type[])
뷰가 지정된 계층에서 호스트될 때 지정된 특성 컬렉션이 있는 UITabBar의 하위 클래스에 대한 모양 프록시 UITabBar.UITabBarAppearance 를 가져옵니다.
public static UIKit.UITabBar.UITabBarAppearance GetAppearance<T> (UIKit.UITraitCollection traits, params Type[] containers) where T : UIKit.UITabBar;
static member GetAppearance : UIKit.UITraitCollection * Type[] -> UIKit.UITabBar.UITabBarAppearance (requires 'T :> UIKit.UITabBar)
형식 매개 변수
- T
UIAppearance 프록시를 반환해야 하는 형식입니다. UITabBar의 하위 클래스입니다.
매개 변수
- traits
- UITraitCollection
일치시킬 특성 컬렉션입니다.
- containers
- Type[]
개발자가 이 특정 모양을 적용하기 위해 컨테이너로 포함하려는 형식 목록입니다.
반환
지정된 형식의 모양 프록시 개체입니다.
설명
반환된 개체는 UIAppearance 프록시를 나타냅니다. 여기서 개발자는 지정된 특성 컬렉션이 있는 UITabBar 인스턴스에 대한 모양 속성을 설정할 수 있습니다. 이 경우 해당 인스턴스가 매개 변수에 지정된 containers
계층 구조에 포함될 때 뷰가 지정된 계층에서 호스트됩니다.
Appearance 속성 또는 AppearanceWhenContainedIn(Type[]) 이 특정 클래스의 인스턴스에서만 작동하는 메서드와 달리 GetAppearance에서 반환된 프록시를 사용하여 서브클래스의 스타일을 변경할 수 있습니다.
다음 예제에서는 GetAppearance 메서드의 작동 방식을 보여 줍니다.
var myTheme = UITabBar.GetAppearance<MyUITabBarSubclass> (myTraits, typeof (UINavigationBar), typeof (UIPopoverController));
myTheme.TintColor = UIColor.Red;
자세한 내용은 클래스에 대한 UIAppearance 설명서를 참조하세요.
적용 대상
GetAppearance<T>()
UITabBar의 하위 클래스에 대한 모양 프록시 UITabBar.UITabBarAppearance 를 가져옵니다.
public static UIKit.UITabBar.UITabBarAppearance GetAppearance<T> () where T : UIKit.UITabBar;
static member GetAppearance : unit -> UIKit.UITabBar.UITabBarAppearance (requires 'T :> UIKit.UITabBar)
형식 매개 변수
- T
UIAppearance 프록시를 반환해야 하는 형식입니다. UITabBar의 하위 클래스입니다.
반환
지정된 형식의 모양 프록시 개체입니다.
설명
반환된 개체에서 모양 속성을 설정하면 형식 매개 변수의 모든 클래스 및 하위 클래스의 모양에 영향을 줍니다.
Appearance 속성 또는 AppearanceWhenContainedIn(Type[]) 이 특정 클래스의 인스턴스에서만 작동하는 메서드와 달리 GetAppearance에서 반환된 프록시를 사용하여 서브클래스의 스타일을 변경할 수 있습니다.
다음 예제에서는 GetAppearance 메서드의 작동 방식을 보여 줍니다.
var myTheme = UITabBar.GetAppearance<MyUITabBarSubclass> ();
myTheme.TintColor = UIColor.Red;
자세한 내용은 클래스에 대한 UIAppearance 설명서를 참조하세요.
적용 대상
GetAppearance<T>(UITraitCollection)
UITabBar의 하위 클래스에 대한 모양 프록시 UITabBar.UITabBarAppearance 를 가져옵니다.
public static UIKit.UITabBar.UITabBarAppearance GetAppearance<T> (UIKit.UITraitCollection traits) where T : UIKit.UITabBar;
static member GetAppearance : UIKit.UITraitCollection -> UIKit.UITabBar.UITabBarAppearance (requires 'T :> UIKit.UITabBar)
형식 매개 변수
- T
UIAppearance 프록시를 반환해야 하는 형식입니다. UITabBar의 하위 클래스입니다.
매개 변수
- traits
- UITraitCollection
일치시킬 특성 컬렉션입니다.
반환
지정된 형식의 모양 프록시 개체입니다.
설명
반환된 개체는 개발자가 UITabBar 인스턴스에 대한 모양 속성을 설정할 수 있는 UIAppearance 프록시를 나타냅니다.
Appearance 속성 또는 AppearanceWhenContainedIn(Type[]) 이 특정 클래스의 인스턴스에서만 작동하는 메서드와 달리 GetAppearance에서 반환된 프록시를 사용하여 서브클래스의 스타일을 변경할 수 있습니다.
다음 예제에서는 GetAppearance 메서드의 작동 방식을 보여 줍니다.
var myTheme = UITabBar.GetAppearance<MyUITabBarSubclass> (myTraits, );
myTheme.TintColor = UIColor.Red;
자세한 내용은 클래스에 대한 UIAppearance 설명서를 참조하세요.