Search code examples
uitableviewios5cellhorizontal-scrolling

Horizontal scroll on a cellview


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?


Solution

  • 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.