NimbusKit
1.2.1 - Fork Nimbus on Github - Visit the Nimbus Wiki
The iOS framework that grows only as fast as its documentation
|
The launcher data source used to populate the view.
Tasks | |
Configuring a Launcher View | |
(NSInteger) | - launcherView:numberOfButtonsInPage: |
(UIView< NILauncherButtonView > *) | - launcherView:buttonViewForPage:atIndex: |
(NSInteger) | - numberOfPagesInLauncherView: |
(NSInteger) | - numberOfRowsPerPageInLauncherView: |
(NSInteger) | - numberOfColumnsPerPageInLauncherView: |
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. |