I am quite new to ios and lately have been faced with the challenge of implementing a bus seating chart in ios. This chart will allow users to also select preferred seats. I tried this with the stackview and the implementation did not turn out well. Also, the scrollview does not work so I am unable to see any of the components if they have been added at all. Any ideas on how to implement the bus seating chart?
Asked
Active
Viewed 149 times
1 Answers
1
If I was on your place, I would implement it using UICollectionView
with UICollectionViewFlowLayout
with fixed cell size (I assume that the bus is pretty symmetrical).

Milan Nosáľ
- 19,169
- 4
- 55
- 90
-
1Thanks for this, I was able to implement this with the UICollectionView. Great insight – user1514567 Jan 18 '18 at 21:17