I am building an app about meetings where I want to show a preview of the VIP participants in each meeting cell.
These participants are not clickable nor scrollable, the only purpose it's to quickly see them at a glance.
The problem is that the view is very dynamic:
- VIP's appear with image or initials
- The rest of the attendees is just a number
- if >5 VIP's, the circles start going together overlapping (spacing goes smaller)
- if 9 VIPs, big wrapping circle “All VIPs in Attendance"
What should I do?
- CollectionView (seems over-kill as I am not interested in any kind of interaction with the images)?
- StackView?
- Images (and change constrains programmatically)?
NOTE:
These is just one kind of Table View Cell, but we have a lot more variations, so we are building the custom cells in xib files. Xcode doesn't allow me to add a Collection View Cell in to the Collection View within the xib.