mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-12 04:10:36 +01:00
Passing Objects with segue and editing safely. #226
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @tosbaha on GitHub (Aug 20, 2018).
Hi,
In usual master detail view application, I have ListMonitor and I am passing objects to detail view controller with a segue. If I edit the object with
It successfully edits the object but the changes are not seen immediately. I have to refresh the object by going back and forth. However if I directly edit the object like
object.property = valuechanges are seen immediately. Documents says that we should use the edit. How should I proceed?@tosbaha commented on GitHub (Aug 21, 2018):
I found my error. I had to wait for
asynchronousoperation to finish and calltableView.reloadDatainside the completion block.