Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > iPhone SDK Development Forums > iPhone SDK Development > iPhone SDK Development - Advanced Discussion

Reply
 
LinkBack Thread Tools Display Modes
Old 07-22-2010, 05:11 AM   #1 (permalink)
Registered Member
 
Join Date: Jun 2010
Posts: 129
stephen is on a distinguished road
Default NSPredicate - not working as expected.

Hello,

I trying to select certain record types from my database, using NSPredicate, but its not working as expected. Its not selecting any records at all. When I comment out the NSPredicate lines the Fetch Request works with no problems, selecting all the records in my database.

Code:
 NSString *mapIDx = @"98";
    NSLog(@"map id: %@", mapIDx);

    NSFetchRequest *request = [[NSFetchRequest alloc] init];

    NSEntityDescription *entity = [NSEntityDescription entityForName:@"WayPoint" inManagedObjectContext:managedObjectContext];
    [request setEntity:entity];

    //NSPredicate *predicate = [NSPredicate predicateWithFormat:@"waypoint_map_id=%@", mapIDx];
    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"waypoint_map_id==%@", mapIDx];
    [request setPredicate:predicate];

    NSError *error;
    listArray = [[managedObjectContext executeFetchRequest:request error:&error] mutableCopy];
    [request release];


    int arrayItemQuantity =[listArray count];
    NSLog(@"Array Quantity: %d", arrayItemQuantity);

    // Loop through the array and display the contents.
    int i;
    for (i = 0; i < arrayItemQuantity; i++)
    {
        NSLog (@"Element %i = %@", i,[listArray objectAtIndex: i]);
    }

    /*
    NSInteger *xCoordinate = listArray[1];
    NSInteger *yCoordinate = listArray[3];
    NSLog(@"xCoordinate: %@", xCoordinate);
    NSLog(@"yCoordinate: %@", yCoordinate);

    CLLocationCoordinate2D coordinate = {xCoordinate, yCoordinate};
    MapPin *pin = [[MapPin alloc]initwithCoordinates:coordinate];
    [self.mapView addAnnotation:pin];
    [pin release];
    */
[listArray release];
Anyone any thoughts ?

Regards,
Stephen
stephen is offline   Reply With Quote
Old 07-22-2010, 02:24 PM   #2 (permalink)
Registered Member
 
Join Date: Jul 2010
Posts: 1
czasalad is on a distinguished road
Default

hello,

i think the code here:

Code:
 NSPredicate *predicate = [NSPredicate predicateWithFormat:@"waypoint_map_id==%@", mapIDx];
    [request setPredicate:predicate];
is the problem, seems to me that waypoint_map_id is a number.. while mapIDx is a NSString.....

if waypoint_map_id is a NSString, then that == will never be true, since
u need to use string comparison, instead of == since that just compares the pointers

don't know if that's correct, but it's worth a try

Last edited by czasalad; 07-22-2010 at 02:29 PM.
czasalad is offline   Reply With Quote
Old 07-23-2010, 09:01 AM   #3 (permalink)
Registered Member
 
Join Date: Jun 2010
Posts: 129
stephen is on a distinguished road
Default

waypoint_map_id is a string. Could you post some sample code for string comparison.
stephen is offline   Reply With Quote
Old 07-23-2010, 09:15 AM   #4 (permalink)
Registered Member
 
Join Date: Jun 2010
Posts: 129
stephen is on a distinguished road
Default

Problem solved:

Code:
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"waypoint_map_id contains[cd] %@", mapIDx];
	[request setPredicate:predicate];
stephen is offline   Reply With Quote
Old 07-24-2010, 12:31 AM   #5 (permalink)
Registered Member
 
Join Date: Jul 2010
Posts: 41
Yellow is on a distinguished road
Default

congrats dude! and thanks for posting up the solution!
Yellow is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



» Advertisements
» Online Users: 383
14 members and 369 guests
AragornSG, ChrisYates, coolman, davejas69, givensur, guusleijsten, hussain1982, jbro, Kryckter, locombiano89, Mah6447, Meoz, stanny, WeaselPig
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,646
Threads: 94,111
Posts: 402,862
Top Poster: BrianSlick (7,990)
Welcome to our newest member, locombiano89
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 05:44 PM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0