NimbusKit
1.2.1 - Fork Nimbus on Github - Visit the Nimbus Wiki
The iOS framework that grows only as fast as its documentation
|
A single page in a launcher view.
This is a recyclable page view that can be used with NIPagingScrollView.
Each launcher page contains a set of views. The page lays out each of the views in a grid based on the given display attributes.
Views will be laid out from left to right and then from top to bottom.
Tasks | |
NSString * | reuseIdentifier property |
(id) | - initWithReuseIdentifier: |
(void) | - prepareForReuse |
(void) | - pageDidDisappear |
(void) | - setFrameAndMaintainState: |
Recyclable Views | |
NIViewRecycler * | viewRecycler property |
NSArray * | recyclableViews property |
(void) | - addRecyclableView: |
Configuring Display Attributes | |
UIEdgeInsets | contentInset property |
CGSize | viewSize property |
CGSize | viewMargins property |
A shared view recycler for this page's recyclable views.
When this page view is preparing for reuse it will add each of its button views to the recycler. This recycler should be the same recycler used by all pages in the launcher view.
All of the recyclable views that have been added to this page.
The distance that the recyclable views are inset from the enclosing view.
Use this property to add to the area around the content. The unit of size is points. The default value is UIEdgeInsetsZero.
The size of each recyclable view.
The unit of size is points. The default value is CGSizeZero.
The recommended horizontal and vertical distance between each recyclable view.
This property is only a recommended value because the page view does its best to distribute the views in a way that visually balances them.
Width is the horizontal distance between each view. Height is the vertical distance between each view. The unit of size is points. The default value is CGSizeZero.
Add a recyclable view to this page.
view | A recyclable view. |
This view's reuse identifier.
Used by NIViewRecycler to pool this view into a group of similar recycled views.
Initializes a newly allocated view with the given reuse identifier.
This is the designated initializer.
reuseIdentifier | The identifier that will be used to group this view in the view recycler. |
Called immediately after the view has been dequeued from the recycled view pool.
Called after the page has gone off-screen.
This method should be used to reset any state information after a page goes off-screen. For example, in the Nimbus photo viewer we reset the zoom scale so that if the photo was zoomed in it will fit on the screen again when the user flips back and forth between two pages.
Called when the frame of the page is going to change.
Use this method to maintain any state that may be affected by the frame changing. The Nimbus photo viewer uses this method to save and restore the zoom and center point. This makes the photo always appear to rotate around the center point of the screen rather than the center of the photo.