Heading
My application requires following things to be added in action sheet.
=>A UIToolbar
=>A Button on UIToolbar
=>A UIPicker Control
i have given below an image to understand my requirements.

Will you plz explain, How this can be implemented?
|
Heading My application requires following things to be added in action sheet. =>A UIToolbar i have given below an image to understand my requirements.
Will you plz explain, How this can be implemented?
| |||||
feedback
|
|
One more solution:
| |||||||||||||||||
feedback
|
|
Even though this question is old, I'll quickly mention that I've thrown together an ActionSheetPicker class with a convenience function, so you can spawn an ActionSheet with a UIPickerView in one line. It's based on code from answers to this question. Edit: It now also supports the use of a DatePicker and DistancePicker. | |||||||||||||||
feedback
|
|
Yep ! I finally Find it. implement following code on your button click event, to pop up action sheet as given in the image of question.
| |||||||||||
feedback
|
|
Marcio's excellent solution to this question was of great help to me in adding subviews of any kind to a UIActionSheet. For reasons that are not (yet) entirely clear to me, the bounds of the UIActionSheet can only be set after it has been displayed; both sagar's and marcio's solutions successfully address this with a setBounds:CGRectMake(...) message being sent to the actionsheet after it is shown. However, setting the UIActionSheet bounds after the sheet has been displayed creates a jumpy transition when the ActionSheet appeaars, where it "pops" into view, and then only scrolls in over the final 40 pixels or so. When sizing a UIPickerView after adding subviews, I recommend wrapping the setBounds message sent to the actionSheet inside an animation block. This will make the entrance of the actionSheet appear smoother.
| |||
feedback
|
|
For those guys who are tying to find the DatePickerDoneClick function... here is the simple code to dismiss the Action Sheet. Obviously aac should be an ivar (the one which goes in your implmentation .h file)
| ||||
|
feedback
|