BRListControl
Source Code Examples: (that shows/utilize the control)
- Needs to be added
Provides for the following 'setters' etc:
- (void)addDividerAtIndex:(long)fp8;
- Comments: Places a divider line below the list entry
- Expects: Long
- Example Usage: [_yourListControl addDividerAtIndex:2] (would put a divider below the 3rd menu choice - remember lists start with item 0 as the first item)
- (void)removeDividerAtIndex:(long)fp8;
- Comments: Removes a divider line below the list entry
- Expects: Long
- Example Usage: [_yourListControl removeDividerAtIndex:2] (would put a divider below the 3rd menu choice - remember lists start with item 0 as the first item)
- (void)setDividerIndex:(long)fp8;
- Comments: Places a divider line below the list entry (this removes ALL of the other dividers you may have specified)
- Expects: Long??
- Example Usage: [_yourListControl setDividerIndex:2]
- (void)setDatasource:(id)fp8;
- Comments: An array of items?
- Expects: NSArray??
- Example Usage: [_yourListControl setDatasource:????]
- (void)setSelection:(double)fp8;
- Comments: Used to select a specific item in the list (instead of the default of 0)??
- Expects: Double??
- Example Usage: [_yourListControl setSelection:????]
- (void)setRowHeight:(float)fp8;
- Comments: ????
- Expects: Float??
- Example Usage: [_yourListControl setRowHeight:????]
Other notes / observations :
- None at this time
Back to the Plug-in Developers Note Pad