MagicalRecord with a UITableView example

Does anyone know if there is a good tutorial or example project with setting up MagicalRecord in a TableView-based application, preferably with some events in the background thread (data import and callback to update the user interface)? I really could not find good samples. Thanks in advance.

+4
source share
2 answers

Not sure if you are still waiting for an answer to this question, but can help others, I wrote a tutorial on the basic use of CoreData: http://ablfx.com/blog/2012/03/using-coredata-magicalrecord/

And here is an example application that displays data in a TableView: https://github.com/ablfx/MagicalRecord-Example-App

+2
source

Here is another common example that I wrote http://www.dplusmpage.com/2012/07/13/coredata-on-ios-using-magicalrecord/ , maybe this helps. This is also about another issue that I encountered with the NSManagedSubclasses generation.

0
source

Source: https://habr.com/ru/post/1386793/


All Articles