-
Still working on converting an app over from downloading information every time it uses or displays it, to caching it on-phone using CoreData (courtesy of MagicalRecord).
Because we don't have a dat…
-
When using UITableView to updates a few rows , you have some indexes and you can use beginUpdates and endUpdates.
When using GMGridView I found this is difficult,you can only insert/delete/move one c…
-
The fetchedResultsController's sectionInfo objects seem to not listen to the controller's fetchRequest "fetchLimit" value. It would be nice to be able to limit a RZFetchedCollectionList's object based…
-
I have 2 Tables;
1 Playlist , Column: PlaylistName
2 Tracks, Column: Album,Artist,CreateTime……
Playlist and Tracks is a many-to-many relationships , Delete Rule is Nullify.
There are two situations:…
-
-
## What
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'An instance of NSFetchedResultsController requires a fetch request with sort descriptors'
## Context
`…
-
Hi Dave, sorry to let you know I noticed a leak in your `Fetch` DynamicProperty. Every time a View is re-init that contains `@Fetch` a new `FetchObserver` object is init but I think `StateObject` will…
-
Can I do it with your library? I really appreciate it. Nice, clean and simple, but all I need yet is to remove and adding controllers dynamically. Number of controllers are strongly related to entitie…
-
Would you like to tell me the right way to make a FetchedResultsController?
`let fecthController = dataStack.createFetchedResultsController(From(), SectionBy("name"), OrderBy(.ascending("foodID")))…
-
I've a big refresh problem in my app, in particular I follow these simple steps:
1. Fetch data from server;
2. Store data with MagicalRecord;
I expect that the a View with UITableView will be refresh…