Are any objects along the way nil?

--Andy

On Sep 4, 2009, at 9:47 AM, Clayton Leitch wrote:

Here is the code in MyDocument:
-(IBAction)calculateStat:(id)sender{
        fetchedObjects = nil;
        context = [self managedObjectContext];
        fetchRequest = [[NSFetchRequest alloc] init];
entity = [NSEntityDescription entityForName:@"Measurement" inManagedObjectContext:context];
        [fetchRequest setEntity:entity];
fetchedObjects = [context executeFetchRequest:fetchRequest error:&error];
        if (fetchedObjects == nil) {
                NSLog(@"error");
                [errorMessage setStringValue:@"no objects"];
        }else {
                [errorMessage setIntValue:[fetchedObjects count]];
        }

        
        [fetchRequest release];
The fetchedObjects count is always 0. Any idea what silly thing I forgot.

Thanks
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/aglee%40mac.com

This email sent to ag...@mac.com

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to