0

I want to implemenet a picker view in which user can select multiple rows and selected rows should show a "tick" mark.

After googling a lot i found this opensource code

But when i tried to support both orientation the GUI is showing in a improper manner.

Can anyone please help me for a picker view with multiple selection of rows supporting portrait and landscape orientation.

Hoping for your help.

Thanks in advance.

Christian Schnorr
  • 10,768
  • 8
  • 48
  • 83
suji
  • 1,470
  • 6
  • 22
  • 41

1 Answers1

1

Add a image or empty pickerview and add a tableview in it and then and togggle the cell acessory type when select or deselect

cell.accessoryType = UITableViewCellAccessoryCheckmark 
AppleDelegate
  • 4,269
  • 1
  • 20
  • 27
  • @appdelegate thanks for your answer.i tried the way you suggested.but how to show picker.showsSelectionIndicator = YES;.when i add the table view above the picker it is hidding the selectionIndicator of picker view.can you please suggest a alternative.. – suji Sep 21 '12 at 05:07