NimbusKit
1.2.1 - Fork Nimbus on Github - Visit the Nimbus Wiki
The iOS framework that grows only as fast as its documentation
|
The NILauncherViewController class creates a controller object that manages a launcher view.
It implements the following behavior:
Tasks | |
Accessing the Launcher View | |
NILauncherView * | launcherView property |
Managing Selections | |
(void) | - launcherView:didSelectItemOnPage:atIndex: |
Configuring a Launcher View | |
(NSInteger) | - launcherView:numberOfButtonsInPage: |
(UIView< NILauncherButtonView > *) | - launcherView:buttonViewForPage:atIndex: |
(NSInteger) | - numberOfPagesInLauncherView: |
(NSInteger) | - numberOfRowsPerPageInLauncherView: |
(NSInteger) | - numberOfColumnsPerPageInLauncherView: |
Returns the launcher view managed by the controller object.
Informs the receiver that the specified item on the specified page has been selected.
launcherView | A launcher-view object informing the delegate about the new item selection. |
page | A page index locating the selected item in launcher . |
index | An index locating the selected item in the given page. |
Tells the receiver to return the number of rows in a given section of a table view (required).
launcherView | The launcher-view object requesting this information. |
page | The index locating a page in launcherView . |
page
. Tells the receiver to return a button view for inserting into a particular location of a given page in the launcher view (required).
launcherView | The launcher-view object requesting this information. |
page | The index locating a page in launcherView . |
index | The index locating a button in a page. |
Asks the receiver to return the number of pages in the launcher view.
It is assumed that the launcher view has one page if this method is not implemented.
launcherView | The launcher-view object requesting this information. |
launcherView
. The default value is 1. Asks the receiver to return the number of rows of buttons each page can display in the launcher view.
This method will be called each time the frame of the launcher view changes. Notably, this will be called when the launcher view has been rotated as a result of a device rotation.
launcherView | The launcher-view object requesting this information. |
Asks the receiver to return the number of columns of buttons each page can display in the launcher view.
This method will be called each time the frame of the launcher view changes. Notably, this will be called when the launcher view has been rotated as a result of a device rotation.
launcherView | The launcher-view object requesting this information. |