3

In my application, I want to implement a drop down view when selecting every row in the table view.Can u give me an easy solution for implementing this functionality.

Thanks in advance

chatur
  • 2,365
  • 4
  • 24
  • 38
Vineeth N K
  • 51
  • 1
  • 7

4 Answers4

3

this type of functionality for that visits following link Please visit here.

Nimit Parekh
  • 16,776
  • 8
  • 50
  • 72
1

Apple has a sample code of TableView which deals with this issue. https://developer.apple.com/library/ios/#samplecode/TableViewUpdates/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40010139 is the link to download the sample code from Apple developer library. Hope it helps.

ShamsKhan
  • 31
  • 3
1

You can also consider using navigation. That is how it is usually done in iPhone. On selecting a row in a table, push another table with the values you want to show in the drop down.

Shanti K
  • 2,873
  • 1
  • 16
  • 31
0

It seems that you are requiring a popover on selecting a tableview cell.

Download and run the sample application provided here.

I hope this is the one you required.

Ilanchezhian
  • 17,426
  • 1
  • 53
  • 55