The NSPredicate class is used in Mac OS X and iOS development to define logical conditions used to constrain a search either for a fetch or for in-memory filtering.
0
votes
2answers
25 views
NSPredicate for bilateral to-many relationship using Core Data?
I have an Item entity and a Wishlist entity. An item can be in multiple wishlists, and an wishlist can contain multiple items.
With the WishlistTableViewController, which lists all the wishlists, I ...
0
votes
4answers
48 views
How to compare curent time lie between two time slot
I hava an array of NSDictionary like this.
{
id = 12;
"time_from" = "12:00";
"time_to" = "16:00";
"timing_name" = Lunch;
},
{
id = 11;
"time_from" = "08:00";
...
0
votes
3answers
38 views
CoreData NSPredicate with relationship
I have following CoreData objects Model
Now I am having issue in making a predicate with following conditions.
Fetch all those DBOpportunity WHERE
DBOpportunity.stateCode == 1
AND
...
0
votes
0answers
21 views
Checking duplicate events does not working when start and enddate is the same
I have encountered this problem; if event's start date and end date is exactly the same following method to check event is calendar does not work and user can add multiple events with exact same ...
0
votes
3answers
55 views
Form NSPredicate
I have a problem with NSPredicate. Can't think of a way of how to write it and can't find nothing similar.
I have this predicate:
[NSPredicate predicateWithFormat:@"followedBy.username like %@", ...
0
votes
1answer
33 views
Group and count NSArray Objects
I have an NSArray of objects. Each object has following properties/attributes Name,Id,TYPE. Name and id are dependent . i.e. if Id is 12345 and Id is AAAA then for all object with Id 12345 Name is ...
0
votes
0answers
23 views
Is it possible to use SUBQUERY to return averages in an NSArray?
I recently stumbled across the SUBQUERY function in Objective C, however, despite Google-ing/reading what I could find - I don't quite get it.
There seems to be limited documentation for 'beginners' ...
0
votes
1answer
60 views
Multiple NSPredicate
I'm trying to prepare multiple search in my CoreData entity Recipes. There are parameters by which I would like to prepare fetch.
Recipes attributes:
@property (nonatomic, retain) NSNumber * ...
0
votes
2answers
41 views
NSPredicate that filters out subclass results
I have two classes, Company and MyCompany. MyCompany is a subclass of Company, and Company is a subclass of NSManagedObject. I am trying to write a predicate for an NSFetchRequest that will return ...
0
votes
2answers
22 views
Can I pass operators into an NSPredicate via the format string?
I'm trying to create the following predicate
[NSPredicate predicateWithFormat:@"name != %@ AND date %@ %@", varName, operator, varDate]
Where varName and varDate are NSString and NSDate objects ...
0
votes
1answer
24 views
How to make predicate to Entity's customized property
This question is an ongoing one for my previous question.
I want to make a predicate to filter the entity by my customized property, this is the entity class
@interface Expense : NSManagedObject
...
1
vote
2answers
35 views
Core Data Fetch with filter on entity and entities relationship, to many
I need help with a fetch request that filters children where children and parent have a many to many relationship. all the examples I've found are for one to many relationships.
Playlists can ...
0
votes
2answers
73 views
Cannot use a predicate that compares dates in Magical Record
I am making a method that will remove all of my NSManagedObjects that were not updated in the last sync.
- (void)removeStaleObjects {
// Delete objects that have not been updated in this ...
1
vote
3answers
67 views
Filtering NSDictionary with predicate
I am using a NSDictionary that itself contains dictionaries some keys and its values.The format is like ,
{
"1" = {
"key1" = "ss",
"key2" = "rr",
"name" = "nm"
},
...
0
votes
0answers
44 views
Predicate for many-to-many relationship
I have a ordered many-to-many relationship that looks like this:
User <<---->> Follower
Every follower have the property followerIndex and a relationship the the User object. Like below:
...
0
votes
0answers
28 views
Core Data and NSPredicate - How to limit the number of one to many objects
How can I to limit the number of one-to-many objects returned from an entity?
I have code like this:
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = ...
1
vote
2answers
29 views
Why my sorting method using NSSortDescriptor doesn't work well?
I filter my table result using NSPredicate
NSPredicate *resultPredicate = [NSPredicate
predicateWithFormat:@"Name CONTAINS[cd] %@ OR Address CONTAINS[cd] %@",
...
0
votes
1answer
25 views
Exception on Core Data save
This seems a fairly common workflow I have an issue with that I cannot figure why. I have a UITableView with NSFetchedResultsController supplying the rows. To add a new object, I insert into context ...
0
votes
1answer
42 views
How to escape a trailing backslash in an NSPredicate format string
I'm using core data and I have a predicate like this in a fetch request:
NSString *predicateStr = [NSString stringWithFormat:@"name like[c] '%@'",name];
NSPredicate *predicate = [NSPredicate ...
0
votes
1answer
45 views
why nspredicate not working
- (NSFetchedResultsController *)fetchedResultsController
{
if (_fetchedResultsController != nil) {
return _fetchedResultsController;
}
NSFetchRequest *fetchRequest = ...
0
votes
0answers
19 views
NSPredicate for NSMetadataQuery to look for all files and folders
I'm looking for an NSPredicate which will result in a list of all Files and Folders at my defined location, excluding hidden and system files. So far I came up with:
self.q = [[NSMetadataQuery alloc] ...
0
votes
2answers
27 views
RegEx: how to use regular expression with NSPredicate?
I have a table view display rows by person's name property. The table view allows user to fussy search by name. e.g. if user types in 'crp' it would match the name 'Chris Paul'.
I have a method that ...
0
votes
1answer
36 views
Why am I getting a “Unable to parse NSPredicate” error
I built the following predicate to use MagicalRecord against a Core Data store.
// format the date correctly
NSDateFormatter *dateFormat = [[NSDateFormatter alloc]init];
[dateFormat ...
1
vote
1answer
39 views
Core Data and NSPredicate: Relationships
I have a basic entity that looks like the following:
The entity is the basic entity in a whole tree. Every GPNode has a parent GPNode and a set of children (GPNode). Theoretically the hierarchy ...
0
votes
1answer
21 views
how to query using NSpredicate
I am new to xcode and core data. I want to perform the following query using core data.
Select count(roomtype)from roomtable where roomtype=@"ac single" and roomstatus=@"YES";
Please guide me how to ...
2
votes
1answer
56 views
NSPredicate: Fetch one of each kind
I want to create an NSFetchRequest for objects like this:
The Object is Car which has an attribute color.
I have four cars:
car1.color = red
car2.color = red
car3.color = blue
car4.color = green
I ...
0
votes
2answers
50 views
How to filter an array using an array?
I have three types of custom classes (see below) and three arrays componentList, componentGroupList and componentGroupItemList. Arrays are not linked, each of them contain all objects. I need to ...
0
votes
1answer
43 views
NSPredicate Subqueries
SELECT * FROM tbl_SyncEntries WHERE syncDataType == 1 AND
syncLastSuccessOnDt == (SELECT max(syncLastSuccessOnDt) FROM tbl_SyncEntries
WHERE syncDataType==1)
How to formulate a NSPredicate for the ...
0
votes
0answers
19 views
How to delete row from UITableView using NSFetchedResultsController with NSPredicate?
ViewController displays UITableView using NSFetchedResultsController to access Core Data (SQLite). User can swipe and delete, added items are displayed. All is as expected.
When UISearchBar is used ...
1
vote
0answers
38 views
Using a NSFetchedResultsController with an NSManagedObject and fetched properties
I have a database of Cards and Printings that I have in one store (reference data) and my user's data of Containers and CardInstances in another store (as Apple suggests). Each user's card is a table ...
0
votes
2answers
69 views
Price ui text field: how to allow user to enter only one decimal dot in to the text field for price like 283.99 [duplicate]
I have tried with this code as follow
this helps me to allow user to enter only numbers and dot (decimal point)
But the problem is user can allow n number of decimals in this method.
I want to ...
0
votes
1answer
33 views
NSFetchRequest with NSPredicate not returning any results
The following NSFetchRequest does not return any results into the array. I suspect something is wrong with the syntax of NSPredicate. Any ideas?
...
-1
votes
1answer
55 views
How to validate textfield to enter only 0 - 9 numers and a Dot ( . ) for price field in iphone
In my app i have a text field for price values
In this field i allow user to enter only 0, 1, --- 9 number and a decimal point
that too only two digits after a decimal
Only one decima for the field ...
0
votes
1answer
29 views
Evaluate CoreData entity type in predicate
I have a block predicate that I carefully crafted only to discover you can't use them in Core Data.
NSPredicate *rootContactPredicate = [NSPredicate predicateWithBlock:^BOOL(id evaluatedObject, ...
1
vote
1answer
40 views
Format string for NSPredicate with @avg collection operator
Is there a way to construct an NSPredicate so the following array can be filtered by average score larger than, say, 5?
NSArray *objs = @[
@{@"scores":@[@3, @5, @2]},
@{@"scores":@[@5, @2, @8, @9]},
...
0
votes
3answers
99 views
NSPredicate - Unable to parse the format string [duplicate]
I am trying to write a NSPredicate to fetch rows with my_column value with this string "193e00a75148b4006a451452c618ccec" and I get the below crash.
Terminating app due to uncaught exception
...
0
votes
1answer
48 views
search arrays with NSPredicate to return results and matches
Hi I'm using NSPredicate to search objects of NSArrays against a 5 elements array, and get the result back. But is there any way to get the matched results returned by NSPredicate as well as the ...
2
votes
4answers
45 views
NSPredicate for phone number
My phone number format is (987) 786-5645.
- (BOOL)validatePhoneNumberWithString:(NSString*)phone
{
NSString *pNRegex = @"[(0-9)]{3}+\\ +\\[0-9-]{3}+\\[0-9]{4}";
NSPredicate *PNTest = ...
0
votes
1answer
19 views
Search only in array's that set ON in settings
I need to search and filter only in array's that set ON in settings.
Now I loop in dict for all array's:
- (void)filterContentForSearchText:(NSString*)searchText scope:(NSString*)scope
{
...
0
votes
1answer
39 views
How to properly code core data drill down with NSSet
I’m relatively new at iOS programming and Core Data, so please forgive me if this is a stupid question. In my project I have two entities. Entity (1) is named “Doctor”, entity (2) is “Patient”. The ...
1
vote
1answer
52 views
Core Data Duplicate Object Handeling
I have an application which allows users to create documents with a title and assign an author to it. I am trying to prevent duplicate objects from being entered into my core data database when new ...
0
votes
1answer
64 views
Search over all lines in the dictionary using NSPredicate
My data structure is:
Now I iterate through list and add "Name" string to NSMutableArray and then search and filter data using NSPredicate.
How can I search through my whole list? Through Name ...
0
votes
2answers
44 views
NSFetchRequest With NSPredicate in Core Data
I have an attribute of type NSData and I want to search a string in this attribute how can I perform this search using NSPredicate?
I try to use NSPredicate with block but predicate with block not ...
1
vote
1answer
40 views
Prevent consecutive “.” in email address in iPhone application
Is there any way to prevent consecutive "." in email address using NSPredicate? I can check it other way that whether current and previous input is ".". But I already use NSPredicate. Thus, if I just ...
1
vote
4answers
52 views
Getting an NSDictionary by filtering another NSDictionary
Hope someone could help me with that :
I'm using a NSDictionary to fill a UITableView.
Its model is like [key:userID => value:userName].
The tableView is only filled with userName but when ...
0
votes
1answer
50 views
Can't implement search filter to my table data using NSPredicate
Now my search work by sectionsTitle, if I write "Category1" or "Category2" it find section Category1, or Category2, but I need to search by NAMES in all this sections, from here:
NSDictionary *dict = ...
1
vote
1answer
65 views
IOS NSPredicate Not Working
The following example program: although the same url it can not find the url, but the program does not work correctly.
NSDirectoryEnumerator *directoryEnumerator = [[NSFileManager defaultManager] ...
1
vote
1answer
53 views
Core Data Returns incorrect value (although nearly right)
Okay so I ask the Core Data for a record (userKey), in that record is a PublicKey which I am extracting, however, publicKey ends up being 90% right but has a few extra characters at the beginning and ...
0
votes
2answers
55 views
Filter an NSArray of files on directory path/subpath?
Given an iOS app with the following documents in the Documents directory --
Animals/Birds/file1.xyz
Animals/Birds/file2.xyz
Animals/Cats/file1.xyz
Cars/Ford/file1.xyz
Photos/MyAlbums/file1.xyz
And ...
0
votes
0answers
43 views
NSPredicate does not get executed on first launch [duplicate]
I have fetched a lot of forums but still found no answer on the issue I have.
I load data from some URL. Items I receive contain 'deleted' property that I rely on when displaying objects in ...










