0
votes
1answer
26 views
How to write a Core Data predicate to filter to specific sub-entity types?
I have a superentity called FObject with several subentities, say Foo1, Foo2, and Foo3. I have a number of tableviews that should show information about different collections of th …
0
votes
1answer
24 views
Does re-fetching NSFetchedResultsController do anything?
I have a fetched results controller with a predicate on my Thing entity that looks like this: "thingDomain.domainCurrentAccount !=NULL". It finds all of my Thing objects that are i …
0
votes
1answer
27 views
hyphen in NSDictionary key
I've been working this for a few days now with no luck.. I am trying to parse a collection of key/value pairs from an NSDicitonary but it seems to be very sensitive to a hyphen in …
0
votes
2answers
306 views
The correct NSPredicate format for one-to-many relationship in Core Data
Hello,
I have a managed object model A and B with one-to-many relationship.
For this particular task, I want to retrieve all A objects which has a relation to B with a property m …
1
vote
0answers
80 views
CoreData fetch request through abstract managed object to concrete managed object
Hi all,
I'm trying to execute a fetch request against a Managed Object Context with a predicate that tests against a keypath that exists in some subclasses of an abstract class.
…
0
votes
1answer
23 views
Filter contacts in iphone address book
I've created an address book copy with
ABAddressBookRef addressBook = ABAddressBookCreate();
CFArrayRef people = ABAddressBookCopyArrayOfAllPeople(addressBook);
CFMutableArrayRef …
0
votes
1answer
42 views
CoreData: Find minimum of calculated property
Say I have a CoreData entity "Point" with two properties x and y (both NSNumber).
How would a NSPredicate need to look like to let me find the closest Point to say a,b?
for distan …
1
vote
1answer
63 views
NSPredicate Memory Issues
So I am trying to fix this really annoying bug. If I filter my array like the ideal version with NSPredicate, I will get EXC_BAD_ACCESS because it tries to call release on the obje …
0
votes
2answers
212 views
NSFetchedResultsController and constructing NSFetchRequests
I have setup Core Data for an iPhone app without an instance of NSFetchedResultsController.
To do this, I created a created a model class to encapsulate all core data requests and …
1
vote
2answers
103 views
NSPredicate and simple Regular Expression problem
I'm having problems with simple NSPredicates and regular expressions:
NSString *mystring = @"file://questions/123456789/desc-text-here";
NSString *regex = @"file://questions+";
N …
1
vote
1answer
136 views
Deleting Duplicate Objects in Core Data (iphone)
In my iPhone app I provide users with a view of industry news items. I get this list as an xml file from my server. Parsing and inserting the xml data into my Core Data repository …
-2
votes
1answer
162 views
Core Data Query for iPhone
I am new to core data and before I was using sqlite.
I found SQLite is not efficient and since my application is using extensive database communication, I have to compile the sta …
2
votes
2answers
240 views
iPhone - getting unique values from NSArray object
I have an NSArray formed with objects of a custom class. The class has 3 (city, state, zip) string properties. I would like to get all unique state values from the array.
I did re …
0
votes
2answers
135 views
NSMutableArray from filterUsingPredicate error
I am trying to return a subset of my NSMutableArray (MessageArray) with the following code. MessageArray contains an NSDictionary, one of the keys being FriendStatus. I get a str …
0
votes
2answers
80 views
NSPredicates and double to-n relationships
Hi!
I have an Core Data entity called Album; an album has a relationship to Song entities (called songs), and each Song has an arbitrary count of Tag entities (in a tags property) …
