Tagged Questions

The NSPredicate class is used in Mac OS X development to define logical conditions used to constrain a search either for a fetch or for in-memory filtering.

learn more… | top users | synonyms

20
votes
2answers
10k views

NSPredicate: filtering objects by day of NSDate property

I have a Core Data model with an NSDate property. I want to filter the database by day. I assume the solution will involve an NSPredicate, but I'm not sure how to put it all together. I know how to ...
14
votes
3answers
2k views

What's better way to build NSPredicate with to-many deep relationships?

I have three entities: EntityA, EntityB and EntityC connected with to-many relationships. See schema for details: For getting all instance of EntityA which depend from EntityB.name I use the ...
10
votes
2answers
246 views

How do I use regex to search ignoring certain characters with NSPredicate?

In Hebrew, there are certain vowels that NSPredicate fails to ignore even when using the 'd' (diacritic insensitive) modifier in the predicate. I was told that the solution is to use regular ...
10
votes
3answers
2k views

NSPredicate that is the equivalent of SQL's LIKE

I'm looking for a way to use NSPredicate to set a LIKE condition to fetch objects. In addition to that, an OR would be useful as well. I'm trying to do something where if a user searches "James" I can ...
10
votes
2answers
6k 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 read through the ...
8
votes
5answers
1k views

How to improve Core Data performance?

My app has a UISearchBar allowing user to enter search keywords. Each keystroke executes a Core Data query in order to display the results as text in search bar changes. The problem is that search ...
7
votes
2answers
3k views

Using NSPredicate with Core Data for deep relationships

I have an NSArrayController, companiesController bound to a top level Core Data entity, Companies. A Company has many Department's, and a Department has many Employee; these are represented by the ...
6
votes
2answers
1k views

Is it possible to filter an NSArray by class?

Is there a way construct a predicate to filter by class type? I currently loop through the array and check to the class of each object. Maybe there is a cleaner way?
6
votes
2answers
2k views

NSFetchedResultsController: changing predicate not working?

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 ...
6
votes
4answers
11k views

Core Data, NSPredicate and to-many key

I have a Core Data model in which a Task entity includes an optional to-many relationship excludedOccurrences. One of the properties of excludedOccurrences is start, which is an NSDate object. The ...
5
votes
1answer
118 views

Is having a NSFetchRequest with an NSPredicate supported in MonoTouch

I have tried the following using an NSPredicate and am not getting the results I would expect: NSFetchRequest request = new NSFetchRequest (); request.Entity = ...
5
votes
1answer
186 views

Trouble with negating Core Data NSPredicate relationships

I'm scratching my head on this one. I have a work around, but I don't understand it so that doesn't count. What I want to do is for the entity (in this case a "Photo" lets say), I want to find all the ...
5
votes
2answers
660 views

NSPredicate endswith multiple files

I am trying to filter an array using a predicate checking for files ending in a set of extensions. How could I do it? Would something close to 'self endswith in %@' work? Thanks! NSArray * ...
5
votes
1answer
2k views

Core Data - NSPredicate to filter to-many relationship

I have 2 entities, Task and List. Each task has a to-one relationship to a List object called "list", and there is an inverse relationship with List, which has a to-many relationship with Task called ...
5
votes
3answers
898 views

How to use NSPredicate to catch child objects?

I'm new to core data and try to get all children objects of various types with one query. Say there's an "Animal" type as parent and "Cat", "Dog" and "Bird" as children. I'd like to get both cats and ...
5
votes
1answer
680 views

Getting Core Data Entity from a Parent Entity

I'm trying to retrieve data from an Entity in Core Data where I know the value of a related Entity. IE: Entity1 -attrib1.1 -attrib1.2 -relationship1 Entity2 -attrib2.1 -relationship1 Entity1 has a ...
5
votes
1answer
1k views

How to make an NSFetchRequest which asks for objects that have a specific firstname?

For example, I have a Managed Object Model with an Entity called "Friends", and a friend has a firstName. I want to get all friends where the firstName is equal to "George". How can I do that?
4
votes
1answer
149 views

Subclassing NSPredicate to add operator

Cocoa defines predicate classes (NSPredicate, NSExpression, etc.) which "provide a general means of specifying queries in Cocoa" Predicate Programming. This set of classes describes what I need but ...
4
votes
2answers
161 views

A Core Data Predicate to check if child Entities contain an attribute or “keypath”?

I'm constructing a Core Data NSFetchRequest in objective c. In the data model there is an abstract parent entity (which contains 4 basic attributes), and many different child entities that include ...
4
votes
1answer
328 views

iCloud: How to read in directories created by the user

I would like to read in a list of all directories that are created either by the user or the app in iCloud's Mobile Documents directory (the one found in Lion under ~/Library/Mobile Documents). Here ...
4
votes
2answers
299 views

How do I set up a NSPredicate to look for objects that have a nil attribute

I have a ManagedObject class, and one of the members of the class is a NSDate. I would like to display all objects of the class for which the date is NOT set. I tried using a predicate like this: ...
4
votes
3answers
1k views

Using NSPredicate to fetch exact NSDate from NSManagedObjectContect

I'm trying to fetch results of my entity "MeterReading", which has two properties, "timestamp" and "reading". "timestamp" is an NSDate. I'm now trying to fetch an object with an exact date. ...
4
votes
1answer
443 views

NSFetchedResultsController with predicate ignores changes merged from different NSManagedObjectContext

I am presenting table view contents using NSFetchedResultsController which has a predicate: [NSPredicate predicateWithFormat:@"visible == %@", [NSNumber numberWithBool:YES]] On background thread ...
4
votes
2answers
491 views

NSPredicate as a constraint solver?

I'm working on a project which includes some slightly more complex dynamic layout of interface elements than what I'm used to. I always feel stupid writing complex code that checks if so-and-so is ...
3
votes
2answers
82 views

How do I refresh/reload to update changes to my predicate & thus fetch request?

Hi I currently have a table view which is being filled via Core Data. I am limiting the results using NSPredicate so that only items with the same OrderNumber are displayed in the tableView. ...
3
votes
1answer
91 views

NSPredicate - Unable to generate SQL for predicate, I wonder why?

I have already solved my problem [Blindly] without understanding root cause. But I would rather understand a concept from a professional. So could you please tell me why below identical code one works ...
3
votes
1answer
376 views

What is the bindings parameter for the block in predicateWithBlock: used for?

The declaration for +[NSPredicate predicateWithBlock:] looks like this: + (NSPredicate *)predicateWithBlock:(BOOL (^)(id evaluatedObject, NSDictionary *bindings))block Apple's documentation for the ...
3
votes
1answer
205 views

Matching NSPredicate With String

I have this predicate which works somewhat well. NSPredicate *filter = [NSPredicate predicateWithFormat:@"code contains[cd] %@", predicateFilter]; So if predicateFilter is 112, this finds all code ...
3
votes
2answers
373 views

NSPredicate something equivalent of SQL's GROUP BY

To simplify: There are 3 columns in a table named cards. id packTitle term id is a column - integers from 0.....100 packTitle - string describing packs, lets say there are 3 kinds of pack PACK1, ...
3
votes
2answers
134 views

What's the best way to generate this string? (NSMutableString…)

I have a dictionary whose keys are NSStrings and whose objects are NSArray. Here's an example: key (NSString) : GroupA value (NSArray): John Alex Joe ...
3
votes
1answer
247 views

fetching objects from core data not in a set

I'm trying to fetch objects from core data that are not in a given set, but I haven't been able to get it to work. For instance, suppose that we have a core data entity named User, which has a few ...
3
votes
1answer
114 views

Forcing the display of a compound row with NSPredicateEditor

I'm creating an NSPredicateEditor in code and trying to achieve what I had hoped would be a fairly simple task. Basically, I would like to display a compound NSPredicateEditorRowTemplate (giving the ...
3
votes
4answers
663 views

NSPredicate to filter only on “year” part of a date field

I have an entity with a date field and I would like to select the records for a given year. How to build a NSPredicate for the job? Didn't find anything about date functions (if any) in Core Data ...
3
votes
1answer
406 views

Core Data NSPredicate with SQLITE store

This code returns 0 objects which is not correct. However, when removing the predicate, the fetch request returns all objects. NSError *error = nil; NSEntityDescription *entityDescription = ...
3
votes
3answers
340 views

How to use binary flags in Core Data?

I have an int32 attribute in a Core Data database. I use this int as an enum bit field. Is it possible to create a NSPredicate to query items based on the binary value of this int ? Something like ...
3
votes
1answer
435 views

using NSPredicate with a set of answers

I have a set of strings containing personIDs and I have a NSFetchedResults of people managedObjects with unique strPersonIDs. I tried to create an NSPredicate but it fails. Any help with this would ...
3
votes
1answer
337 views

NSPredicate syntax for DATEADD?

is there a way to do a DateAdd or a DateDiff function on an NSPredicate? Thank you, Jose.
3
votes
1answer
279 views

NSPredicate that references multiple fields on a to-many relationship?

I'm using a SQLite persistent store. I have a NSManagedObject class Den with a to-many relationship Bear. Bear has several fields: Bear: breed color age ... When I am building ...
3
votes
1answer
2k views

Core Data, try to use NSPredicate to filter a toMany relationship set but get the “to-many key not allowed here” error

Here is the model I have: http://www.girardet.ch/model.png My goal is to retrieve all the Quotes with these criterias: belong to a specific theme : the name_en attribute of Themes order by ...
3
votes
2answers
765 views

NSPredicate for an NSManagedObject's string attribute's length

Could someone please help me define a predicate that returns only NSManagedObject's who's "letters" attribute length is within a certain range? Here's the example I've been trying, I've got a feeling ...
3
votes
3answers
2k views

How to search an NSSet or NSArray for an object which has an specific value for an specific property?

How to search an NSSet or NSArray for an object which has an specific value for an specific property? Example: I have an NSSet with 20 objects, and every object has an type property. I want to get ...
3
votes
2answers
1k views

Building a NSPredicate for a filter

Just wondering what the best way to build a NSPredicate is if some filters are optional? This is basically for a filter, so if some options aren't selected I don't to filter by them eg. If I have ...
3
votes
1answer
2k views

Core Data ANY BETWEEN predicate

I'm trying to create an NSPredicate to find 'projects' that contain 'sessions' within a certain date range. I tried this at first: [NSPredicate predicateWithFormat:@"ANY sessions.date BETWEEN ...
3
votes
1answer
537 views

NSPredicates, scopes and SearchDisplayController

Building a search with some custom objects and three scopes: All, Active, and Former. Got it working with the below code: - (void)filterContentForSearchText:(NSString*)searchText scope:(NSString ...
3
votes
1answer
857 views

Core data to-many NSPredicate with AND

I'm trying to write a query for the find-as-you-type search bar. What I want to do is query "Kind", and return any Kinds for which there is a LocalName with ('name' LIKE %@ AND localeIdentifier == ...
2
votes
1answer
88 views

Sorting NSMutableArray using SortDescriptor AND Predicate possible?

I have an array of type "Restaurant" which has an NSSet of "Rating." Rating has an ID and a value. I want to sort the array of Restaurant's by rating with an ID of 01, from high to low. Something ...
2
votes
1answer
113 views

NSPredicate Sort Array and Order DESC

I have an NSMutableArray containing TBPosts that I would like to filter in descending order according to the commentsCount and likesCount of the TBPost. Initially, the first object in the filtered ...
2
votes
3answers
135 views

Evaluating an NSPredicate on a NSArray (without filtering)

Is it possible to evaluate a NSPredicate on a NSArray, without having the NSPredicate starting to filter out objects in the array? For instance, say I have the following predicate that just checks ...
2
votes
1answer
105 views

Searching an NSSet attribute in CoreData with a searchbar

I have a CoreData model with an object "bar" which has a to-many relationship "drinks" to the entity "drink". The entity drink has only one attribute called "name". Now in my app I have a tableView ...
2
votes
1answer
145 views

NSDictionary VS NSArray+NSPredicate: which is faster/recommented

What is faster getting to an object from a collection? a. Searching in an NSDictionary with [dictionary objectForKey:key]; or b. Searching in an NSArray with [NSPredicate ...

1 2 3 4 5 10