NimbusKit
1.2.1 - Fork Nimbus on Github - Visit the Nimbus Wiki
The iOS framework that grows only as fast as its documentation
|
The methods declared by the NISnapshotRotation protocol allow the adopting delegate to respond to messages from the NISnapshotRotation class and thus implement snapshot rotations.
Inherited by NITableViewSnapshotRotation().
Tasks | |
Accessing Rotation Views | |
(UIView *) | - containerViewForSnapshotRotation: |
(UIView *) | - rotatingViewForSnapshotRotation: |
Configuring Fixed Insets | |
(UIEdgeInsets) | - fixedInsetsForSnapshotRotation: |
Tells the delegate to return the container view of the rotating view.
This is often the controller's self.view. This view must not be the same as the rotatingView and rotatingView must be in the subview tree of containerView.
@sa NISnapshotRotation::rotatingViewForSnapshotRotation:
Tells the delegate to return the rotating view.
The rotating view is the view that will be snapshotted during the rotation.
This view must not be the same as the containerView and must be in the subview tree of containerView.
@sa NISnapshotRotation::containerViewForSnapshotRotation:
Asks the delegate to return the insets of the rotating view that should be fixed during rotation.
This method will only be called on iOS 6.0 and higher.
The returned insets will denote which parts of the snapshotted images will not stretch during the rotation animation.