tags:

views:

54

answers:

1

Hi, how can i show modal dialog box for UIbutton action.This model dialog box has only the UIPicker.

Thanks, sam.

A: 

I think it's not possible. You could create a subview to use as an alert view.

Christoffer
how can i add a UIPickerView to UIAlertView
Sam
what i did I create a ModalView and add the UIPicker for that,now when i click the button it's loading the ModalView. Now i need to know how to pass the selected value to parent and close the ModalView
Sam
Set the ModalView's delegate to the parent class. Then the parent class will receive messages from the ModalView's actions.
Christoffer