DaSilva
DaSilva

Reputation: 1358

How to create an Custom picker?? Or

I need to create an app that contains something like this image:

enter image description here

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

Answers (2)

Deepak Danduprolu
Deepak Danduprolu

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

user745098
user745098

Reputation:

use UIScrollView

Upvotes: 1

Related Questions