Up

NSAppearance class documentation

Authors

Generated by Debian

Date: Generated at 2024-06-06 09:06:15 +0000


Contents -

  1. Software documentation for the NSAppearance class
  2. Software documentation for the NSAppearanceCustomization protocol

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.




Software documentation for the NSAppearanceCustomization protocol

NSAppearanceCustomization

Declared in:
AppKit/NSAppearance.h
Availability: OpenStep

Description forthcoming.
Method summary

appearance 

- (NSAppearance*) appearance;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

effectiveAppearance 

- (NSAppearance*) effectiveAppearance;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

setAppearance: 

- (void) setAppearance: (NSAppearance*)appearance;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


Up