New IOS developer and looking for the best way to create aUITableView
that I can programmatically add cells to.
The idea is that when I load the app I will retrieve a list of names with UIImages
. I want to programmatically add these names as cells stacked horizontally with a text value. Image below is exactly what I'm looking for:
In this example I retrieve the background images with the names "Texas A&M Football", "People of Walmart", etc.
I have tried usingUITableView
andUITableViewCells
but not sure how to programmatically add them in the implementation file.
thanks in advance for any help!