I am using parse server to pass data to TableViewController.
I am able to retrieve data and append to my local arrays using parse. The arrays use a tableView. I have another ViewController called PostDataViewController which I segue to post new data. When I press the post button on the PostDataViewController, I immediately dismiss the ViewController. I call TableViewController.modalPresentationStyle = .fullScreen to enable viewDidAppear().
What I want to be able to do is to upon viewDidAppear(), add only new data from parse to my arrays. My temporary solution is delete all data from all arrays and run the initial query again. But this seems like this wastes a lot of energy & money.
Thanks :)