ios - How to Populate UITextView with value from UIPickerView? -
how populate uitextview value selected uipicker view. user selects category uipickerview , value displayed on uitextview.
you need implement delegate of uipickerview
-(void)pickerview:(uipickerview *)pickerview didselectrow:(nsinteger)row incomponent:(nsinteger)component{ // write code here // yourtextfield.text = [yourarray objectatindex:row]; }
Comments
Post a Comment