mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-11 20:00:30 +01:00
Can fetchAll invoked in background Thread? #277
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 @CoderCMY on GitHub (Jul 15, 2019).
I query a table like this, and I got the result succeed at first ,when i call the tableView's reloadData method , I found all the book's properties is nil in "cellForRowAt" method, I'm so
confused ,who konws why???
@JohnEstropia commented on GitHub (Jul 18, 2019):
You will need to convert your
booksto main thread instances before you use them:@CoderCMY commented on GitHub (Jul 18, 2019):
I've solved this problem with your method, Thank you very much