Up

NSCollectionViewTransitionLayout class documentation

Authors

Generated by Gregory John Casamento,,,

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

Software documentation for the NSCollectionViewTransitionLayout class

NSCollectionViewTransitionLayout : NSCollectionViewLayout

Declared in:
AppKit/NSCollectionViewTransitionLayout.h
Availability: MacOS-X 10.11.0

Description forthcoming.

Instance Variables

Method summary

currentLayout 

- (NSCollectionViewLayout*) currentLayout;
Availability: MacOS-X 10.11.0

Description forthcoming.

initWithCurrentLayout: nextLayout: 

- (instancetype) initWithCurrentLayout: (NSCollectionViewLayout*)currentLayout nextLayout: (NSCollectionViewLayout*)nextLayout;
Availability: MacOS-X 10.11.0

Description forthcoming.

nextLayout 

- (NSCollectionViewLayout*) nextLayout;
Availability: MacOS-X 10.11.0

Description forthcoming.

setTransitionProgress: 

- (void) setTransitionProgress: (CGFloat)transitionProgress;
Availability: MacOS-X 10.11.0

Description forthcoming.

transitionProgress 

- (CGFloat) transitionProgress;
Availability: MacOS-X 10.11.0

Description forthcoming.

updateValue: forAnimatedKey: 

- (void) updateValue: (CGFloat)value forAnimatedKey: (NSCollectionViewTransitionLayoutAnimatedKey)key;
Availability: MacOS-X 10.11.0

Description forthcoming.

valueForAnimatedKey: 

- (CGFloat) valueForAnimatedKey: (NSCollectionViewTransitionLayoutAnimatedKey)key;
Availability: MacOS-X 10.11.0

Description forthcoming.



Instance Variables for NSCollectionViewTransitionLayout Class

_currentLayout

@protected NSCollectionViewLayout* _currentLayout;
Availability: MacOS-X 10.11.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.

_nextLayout

@protected NSCollectionViewLayout* _nextLayout;
Availability: MacOS-X 10.11.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.

_transitionProgress

@protected CGFloat _transitionProgress;
Availability: MacOS-X 10.11.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