I'm new to software development and am working on a test project that allows me to add items to a list. I've found countless tutorials which showcase the basic structure for this, and have gotten up to this point:
I'm creating a UITableView that includes several items and their corresponding price in a list format. The tableview contains a list key and price key in the cell. If the Add button is clicked in the navigation menu, it leads to the attached screen where each item can be added to the tableView if both the namekey and pricekey are filled out before clicking save. I want the Viewcontroller for this to send each item back to the original listview, but i'm not sure if I should use a UITableViewController or UIViewController, or UICollectionViewController for the layout in Xcode, as well as how to implement this functionality.
Any tips or clarification would be greatly appreciated! :)