I would like to create a custom UITableViewCell with 3 fields. I would like each of the fields to be horizontally scrollable.
Field1 Field2 Field3
====== ====== ======
Label1 | Label2 | [graphics: lines, etc.]
My question: What is the right way to implement this?
- Do I create a custom UIViewController with 3 UITableViews?
- Do I create a single UITableView with UITableViewCells that contain
3 UITableViewCell subviews? - Other?
Any examples would be great.
Thank you!
You might need to go with Other option, with a single
UIViewControllerwith a singleUITableView.A Custom
UITableViewCellwith threeUIScrollViews would help you.