Up

NSAppearance class documentation

Authors

Generated by Gregory John Casamento,,,

Date: Generated at 2023-12-22 15:07:50 -0500

Software documentation for the NSAppearance class

NSAppearance : NSObject

Declared in:
AppKit/NSAppearance.h
Conforms to:
NSCoding
Availability: MacOS-X 10.9.0

Description forthcoming.

Instance Variables

Method summary

appearanceNamed: 

+ (instancetype) appearanceNamed: (NSString*)name;
Availability: MacOS-X 10.9.0

Description forthcoming.

currentAppearance 

+ (NSAppearance*) currentAppearance;
Availability: MacOS-X 10.9.0

Description forthcoming.

setCurrentAppearance: 

+ (void) setCurrentAppearance: (NSAppearance*)appearance;
Availability: MacOS-X 10.9.0

Description forthcoming.

allowsVibrancy 

- (BOOL) allowsVibrancy;
Availability: MacOS-X 10.9.0

Description forthcoming.

bestMatchFromAppearancesWithNames: 

- (NSAppearanceName) bestMatchFromAppearancesWithNames: (NSArray*)appearances;
Availability: MacOS-X 10.9.0

Description forthcoming.

initWithAppearanceNamed: bundle: 

- (instancetype) initWithAppearanceNamed: (NSString*)name bundle: (NSBundle*)bundle;
Availability: MacOS-X 10.9.0

Description forthcoming.

name 

- (NSString*) name;
Availability: MacOS-X 10.9.0

Description forthcoming.



Instance Variables for NSAppearance Class

_allowsVibrancy

@protected BOOL _allowsVibrancy;
Availability: MacOS-X 10.9.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_currentAppearance

@protected NSAppearanceName _currentAppearance;
Availability: MacOS-X 10.9.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_name

@protected NSString* _name;
Availability: MacOS-X 10.9.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.





Up