Up

NSAppearance class documentation

Authors

Generated by root

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: Not in OpenStep/MacOS-X

Description forthcoming.

Instance Variables

Method summary

appearanceNamed: 

+ (instancetype) appearanceNamed: (NSString*)name;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

currentAppearance 

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

Description forthcoming.

setCurrentAppearance: 

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

Description forthcoming.

allowsVibrancy 

- (BOOL) allowsVibrancy;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

bestMatchFromAppearancesWithNames: 

- (NSAppearanceName) bestMatchFromAppearancesWithNames: (NSArray*)appearances;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

initWithAppearanceNamed: bundle: 

- (instancetype) initWithAppearanceNamed: (NSString*)name bundle: (NSBundle*)bundle;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

name 

- (NSString*) name;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.



Instance Variables for NSAppearance Class

_allowsVibrancy

@protected BOOL _allowsVibrancy;
Availability: Not in OpenStep/MacOS-X

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: Not in OpenStep/MacOS-X

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: Not in OpenStep/MacOS-X

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