Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7511083
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T23:26:37+00:00 2026-05-29T23:26:37+00:00

I made a simple Core Data Example: NSLog(@Loading…); NSURL *modelUrl = [[NSBundle mainBundle] URLForResource:@CoreDataTest

  • 0

I made a simple Core Data Example:

NSLog(@"Loading...");
NSURL *modelUrl = [[NSBundle mainBundle] URLForResource:@"CoreDataTest" withExtension:@"momd"];
NSManagedObjectModel *objectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelUrl];    
NSManagedObjectContext *objectContext = [[NSManagedObjectContext alloc] init];

NSError *error = nil;

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSURL *storeUrl = [NSURL fileURLWithPath:[documentsDirectory stringByAppendingPathComponent:@"DB.sqlite"]];
NSPersistentStoreCoordinator *coordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:objectModel];
NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:
                         [NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption,
                         [NSNumber numberWithBool:YES], NSInferMappingModelAutomaticallyOption, nil];
NSPersistentStore *migratedStore = [coordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeUrl options:options error:&error];
if(migratedStore == nil) {
    NSLog(@"Could not initialize or migrate store: %@", [error localizedDescription]);
}

[objectContext setPersistentStoreCoordinator:coordinator];

MyQueuedJob *queuedJob = (MyQueuedJob *) [NSEntityDescription insertNewObjectForEntityForName:@"MyQueuedJob" inManagedObjectContext:objectContext];
queuedJob.fooBar = @"Test";

[objectContext save:&error];
sleep(2);

NSFetchRequest *request = [NSFetchRequest alloc];
NSEntityDescription *entDesc = [NSEntityDescription entityForName:@"MyQueuedJob" inManagedObjectContext:objectContext];
[request setEntity:entDesc];
NSSortDescriptor *sortDesc = [[NSSortDescriptor alloc] initWithKey:@"fooBar" ascending:YES];
[request setSortDescriptors:[[NSArray alloc] initWithObjects:sortDesc, nil]];
NSLog(@"fetching jobs...");
NSArray *fetchResults = [objectContext executeFetchRequest:request error:nil];
NSLog(@"jobs fetched!");
NSLog(@"%@", [fetchResults componentsJoinedByString:@", "]);

Code of MyQueuedJob.h (generated by Xcode):

@interface MyQueuedJob : NSManagedObject

@property (nonatomic, retain) NSString * fooBar;

@end

This example runs perfectly fine in the simulator. But when I run it on my real iPhone 4, it crashes with the following message:

2012-02-16 11:06:44.819 CoreDataTest[345:707] Loading...
2012-02-16 11:06:46.937 CoreDataTest[345:707] fetching jobs...
2012-02-16 11:06:46.950 CoreDataTest[345:707] *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]: index 0 beyond bounds for empty array'

on this line:

NSArray *fetchResults = [objectContext executeFetchRequest:request error:nil];

What am I doing wrong?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T23:26:37+00:00Added an answer on May 29, 2026 at 11:26 pm
    NSFetchRequest *request = [NSFetchRequest alloc];
    

    You need to init this. Change it to [[NSFetchRequest alloc] init];

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am just starting to learn Core Audio and made a simple test application
I have a simple Document based Core Data app (built around the standard Apple
On Windows, testing different OSes is made simple using VMs. Is there a simple
We made a simple application and using GoogleAppEngineLauncher (GAEL) ran that locally. Then we
I made a simple counter, but it increments by 2 instead of 1. $handle
I've made a simple http server using Twisted, which sends the Content-Type: multipart/x-mixed-replace header.
I have made a simple test application for the issue, two winforms each containing
I've made a simple OpenCV application with Visual Studio 2008 and I've built it
For an assignment I've made a simple C++ program that uses a superclass (Student)
I have made my own file type (.ddd) and I made a simple program

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.