This is the code I have so far. I am able to enter into the textfield and have it appear in the UITableView, but only after I reload the page and come back to it. I want for
You need to tell the table view to reloadData() whenever the items array changes. So try adding table.reloadData() to the end of your add function.
reloadData()
table.reloadData()
add