by Shawn Veader (@veader) of V8 Logic / V8 Labs, LLC
Original design concept by Buck Sharp, the designer on f/stats.
Add the V8HorizontalPickerView
header and implementation files (.h and .m)
along with the protocol header file to your app source and include them in
your project.
Implement the necessary delegate and data source protocol methods. Instantiate and add the picker view to your view and wire up the delegate and data source. That's it!
- (NSInteger)numberOfElementsInHorizontalPickerView:(V8HorizontalPickerView *)picker;
- (void)horizontalPickerView:(V8HorizontalPickerView *)picker didSelectElementAtIndex:(NSInteger)index;
- (NSString *)horizontalPickerView:(V8HorizontalPickerView *)picker titleForElementAtIndex:(NSInteger)index;
- (UIView *) horizontalPickerView:(V8HorizontalPickerView *)picker viewForElementAtIndex:(NSInteger)index;
- (NSInteger) horizontalPickerView:(V8HorizontalPickerView *)picker widthForElementAtIndex:(NSInteger)index;
The protocol requires the width method to be implemented and for either the title or view *ForElementAtIndex: method to be implemented. (ie: you don't need both)
If you are going to implement the
-horizontalPickerView:viewForElementAtIndex:
data source method, make sure your view conforms to the
V8HorizontalPickerElementState
protocol.
See LICENSE file. TL;DR: I am publishing this under the zlib/libpng license.
Thanks for taking the time to check out the project. Let me know via the GitHub issues feature if you find any bugs or have feature requests. Please drop me a note and let me know if you use this in a project that hits the AppStore.
f/stats - Flickr stats for iPhone
Spentory - Expense Transactions inventory for iPhone
- Submit yours to be included in this list.