88fsantos
88fsantos

Reputation: 393

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?

Upvotes: 0

Views: 205

Answers (1)

melsam
melsam

Reputation: 4977

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.

Upvotes: 1

Related Questions