One of the screens of my iOS app written in Swift is the UITableView.
In this UITableView, I want to load data from an AWS DynamoDB table called Books .
This is currently the prototype of the cell that I have on my storyboard:

In the table I have 3 attributes: "Name", "Price" and "ISBN".
I want to scan the "Books" table and filter the results, so the "ISBN" attribute of the results will contain the number "9".
After I filtered the results, I want to apply them to the UITableView, so the value โNameโ will place the label with the text โNameโ, and the value โPriceโ will go to the label with the text โPriceโ. I want the "ISBN" value to go into some array so that I can recognize the "ISBN" of this book, according to the row index in the UITableView. Until you pay attention to the picture, I already know what to do with it.
I also did the same on Android, using Java, creating a data class (with get and set methods), viewing the table in the action code and then applying the data to TextViews using an adapter.
I am new to iOS and Swift, and I donโt know how to do this, so I would be very happy if you would explain it to me step by step.
Could you help me figure it out?
ios uitableview amazon-web-services amazon-dynamodb
Ido
source share