active questions tagged coredata - Stack Overflowmost recent 30 from stackoverflow.com2010-03-22T09:30:13Zhttp://stackoverflow.com/feeds/tag/coredatahttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2484086/looking-for-an-elegant-way-to-store-one-to-many-relationship-in-coredata-when-ord0Looking for an elegant way to store one-to-many relationship in coredata when order is importantEric Schweichlerhttp://stackoverflow.com/users/2690702010-03-20T17:53:27Z2010-03-20T21:53:56Z
<p>I've been trying to come up with a way to solve my problem, but every solution I can think of is messy and makes me want to retch.</p>
<p>I have a one-to-many relationship, consisting of a Team object that can have many Member objects. When I built my data model using Xcode, I was given the default NSSet in which to store the member objects, Unfortunately Sets are not ordered and I need to preserve the order of the Member objects and I need to know if there are empty spaces between Members.</p>
<p>I thought of Using an NSArray in place of the NSSet and creating a dummy Member object in my data store that I could use to mark vacant a spot between to Member objects, but that solution really feels like too much of a hack to me. Since I'll always have to filter out this dummy Member from any queries. </p>
<p>An NSDictionary would be perfect as I could store the Member object references and their positions as Object-Key pairs, (taking care of both order and vacancies) but apparently CoreData does not support NSDictionary.</p>
<p>Has anyone had a similar need, and devised a simple solution?</p>
http://stackoverflow.com/questions/2482100/nsfetchedresultscontroller-changing-predicate-not-working0NSFetchedResultsController: changing predicate not working?icerelichttp://stackoverflow.com/users/1643972010-03-20T05:46:42Z2010-03-20T05:46:42Z
<p>Hi, I'm writing an app with two tables on one screen. The left table is a list of folders and the right table shows a list of files. When tapped on a row on the left, the right table will display the files belonging to that folder.</p>
<p>I'm using Core Data for storage. When the selection of folder changes, the fetch predicate of the right table's NSFetchedResultsController will change and perform a new fetch, then reload the table data. I used the following code snippet:</p>
<pre><code>NSPredicate *predicate = [NSPredicate predicateWithFormat:@"list = %@",self.list];
[fetchedResultsController.fetchRequest setPredicate:predicate];
NSError *error = nil;
if (![[self fetchedResultsController] performFetch:&error]) {
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
abort();
}
[table reloadData];
</code></pre>
<p><strong>However the fetch results are still the same</strong>. I've NSLog'ed "predicate" before and after the fetch, and they were correct with updated information. The fetch results stay the same as initial fetch (when view is loaded).</p>
<p>I'm not very familiar with the way Core Data fetches objects (is there a caching system?), but I've done similar things before(changing predicates, re-fetching data, and refreshing table) with single table views and everything went well.</p>
<p>If someone could gave me a hint I would be very appreciated.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/2463950/iphone-coredata-how-can-i-track-observe-all-changes-within-a-subgraph1iPhone CoreData: How can I track/observe all changes within a subgraph?D Carneyhttp://stackoverflow.com/users/780992010-03-17T16:19:58Z2010-03-18T13:21:27Z
<p>I have a NSManagedObjectContext in which I have a number of subclasses of NSManagedObjects such that some are containers for others. What I'd like to do is watch a top-level object to be notified of any changes to any of its properties, associations, or the properties/associations of any of the objects it contains.</p>
<p>Using the context's 'hasChanges' doesn't give me enough granularity. The objects 'isUpdated' method only applies to the given object (and not anything in its associations). Is there a convenient (perhaps, KVO-based) was I can observe changes in a context that are limited to a subgraph?</p>