Up

NSAppearance class documentation

Authors

Generated by Gregory John Casamento,,,

Date: Generated at 2024-11-13 12:52:37 -0500


Contents -

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

Software documentation for the NSAppearance class

NSAppearance : NSObject

class_NSAppearance NSObject NSObject NSAppearance NSAppearance NSObject->NSAppearance
Declared in:
AppKit/NSAppearance.h
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