what control/approach for selection of an integer in an iPhone app?
Any recommendations re which approach from a useability perspective for a user to configure one preference for my app, which is number of weeks - probably would make sense to allow it to be anywhere from 2 through to 25 say. So options which come to mind include:
- type it in - but would need some validation
- have a list to pick from (I assume by pushing on another TableView to the UINavigationStack) 开发者_如何学JAVA- but with 25 rows not sure about this (e.g. row 1 = "week 1", row 2 = "week 2" etc)
- UIPicker wheel - but doesn't sound too good
- other???
thanks
I would advice you to us a UIPickerView that shows when you tap to edit
精彩评论