0

I want to do a horizontal scroll on a cell inside a table view, that has a vertical scroll. I have that app: http://www.realmacsoftware.com/clear/ like an example. I want to do something similar, in terms of interaction.

Do you have some ideas, about the best way to do that?

88fsantos
  • 393
  • 1
  • 7
  • 22
  • dupe of - http://stackoverflow.com/questions/4712554/horizontal-scrolling-uitableview – rishi May 21 '12 at 10:50
  • I don.t want to make a horizontal scrollable tableview, but a horizontal scroll on his cells. The tableview would have a vertical scroll – 88fsantos May 21 '12 at 10:59

1 Answers1

1

You will have to create a custom cell (either using an XIB), or programatically. Then insert a custom UIView subclass in the cell, and handle gestures on that UIView. Sorry, this seems complex but there is no direct, built-in way to do this unless you customize the cell with your own UIView.

melsam
  • 4,947
  • 1
  • 22
  • 23