I'm new to xcode. I am trying to create a photo booth which appears at the bottom (as the one in the image) so that i can make multiple selections and view the result at the top. Any knows how this can be achieved?
Asked
Active
Viewed 80 times
-1

Ricky Geng
- 177
- 1
- 2
- 10
1 Answers
0
You have to implement UICollectionView for photo booth.
For UI design follow the given steps,
- Create a UIViewController
- Add UICollectionView on UIViewController
- Set constraint according to your UI design
- Set UICollectionCell height and width same and set mini spacing whatever you want in For cells 5 and For lines 5
and for programming part,
- Take data from where you get json parsing or your static data.
- Store in one array and reload UICollectionView
- Then assign data to your UICollectionView using their delegates and datasource methods.

Angel F Syrus
- 1,984
- 8
- 23
- 43

Abhishek Jadhav
- 706
- 5
- 12