Reputation: 1358
I need to create an app that contains something like this image:
When the user changes the label it should change an image above.. There is more option after the number "24", like a picker.
I have the idea to implement an picker in horizontal mode, but I don t now how to change the design of it to be like the image (without the effect well).
Any one have an idea how to do that, or something that works like this???
Thanks
Upvotes: 0
Views: 494
Reputation: 44633
You can't alter a UIPickerView
object much so you should consider a rotated UITableView
object. More than subclass, you will need to build a composite view that basically mirrors some of the methods of the UITableView
object. And you will have to add appropriate methods that handle the selected value.
Upvotes: 0