views:

38

answers:

1

I have a UITableView with some rows in it. Is it possible to show a UIPickerView when tapping on a row in the table?

I want the UIPickerView to change its data depending on which row it the UITableView that is selected.

A: 

I you set a delegate set for UITableView that view will send you delegate methods (http://developer.apple.com/iphone/library/documentation/userexperience/conceptual/TableView_iPhone/ManageSelections/ManageSelections.html). From there you can reload your picker view.

krzyspmac