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 4015770
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T09:39:33+00:00 2026-05-20T09:39:33+00:00

I’m working with a Navigation Controller based iOS app. There are multiple tableView screens

  • 0

I’m working with a Navigation Controller based iOS app. There are multiple tableView screens that pull and save data from a Core Data persistent store. Most of the data for the different table views comes from NSFetchedResultsController instances or NSFetchRequests.

The app works as intended but I have been getting a few random crashes and glitches that seem to be related to Core Data. For example sometimes when I save the context the app will crash but not always. Another thing I’ve been seeing is the very first tableView doesn’t always update the reflect the data that was modified in it’s detail view.

Currently I’m passing around a single Managed Object Context that was created in the app delegate to each of the different view controllers by setting the context property of the view controller just before I push it onto the navigation stack.

This seems like a clunky, hacky way of getting the job done. Is there a better design pattern to use?

I noticed in one of the WWDC sessions using delegation but I’ve never used creating my own delegates before and haven’t been able to puzzle it out of the WWDC session.

Thanks.

=)

  • 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-20T09:39:34+00:00Added an answer on May 20, 2026 at 9:39 am

    1)
    Use a singleton for your CoreData setup (NSPesistentStoreCoordinator, NSManagedObjectModel & NSManagedObjectContext). You can use this singleton to execute the fetch requests you created in your Models and to add or delete Entities to your Context.

    2)
    Delegates are not that hard. Following is a sample:

    @class SomeClass
    
    @protocol SomeClassDelegate <NSObject> //Implements the NSObject protocol
    - (void) someClassInstance:(SomeClass *)obj givesAStringObject:(NSString *)theString;
    - (BOOL) someClassInstanceWantsToKnowABooleanValue:(SomeClass *)obj //Call to delegate to get a boolean value
    
    @optional
    - (NSString *) thisMethodIsOptional; 
    
    @end
    
    @interface SomeClass : NSObject {
       id<SomeClassDelegate> delegate;
       //Other instance variables omitted.
    }
    @property (assign) id<SomeClassDelegate> delegate;
    @end
    
    @implementation SomeClass
    @synthesize delegate;
    - (void) someMethodThatShouldNotifyTheDelegate {
       NSString *hello = @"Hello";
       if (self.delegate != nil && [self.delegate respondsToSelector:@selector(someClassInstance:givesAStringObject:)]) {
          [self.delegate someClassInstance:self givesAStringObject:hello];
       }
    }
    @end
    

    Option 1 could be something like this, you will have to setup the variables in the init of the object (and implement the singleton ofcourse):

    #import <Foundation/Foundation.h>
    #import <CoreData/CoreData.h>
    
    @interface CoreDataUtility : NSObject {
    @private
        NSManagedObjectModel *managedObjectModel;
        NSManagedObjectContext *managedObjectContext;
        NSPersistentStoreCoordinator *persistentStoreCoordinator;
    }
    
    + (CoreDataUtility *)sharedCoreDataUtility;
    - (NSEntityDescription *) entityDesctiptionForName:(NSString *)name;
    - (NSMutableArray *) executeRequest:(NSFetchRequest *)request;
    - (id) getInsertedObjectForEntity:(NSString *)entity;
    - (void) deleteAllObjects:(NSString *) entityName;
    - (void) deleteManagedObject:(NSManagedObject *)object;
    - (void) saveContext;
    
    @end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
We're building an app, our first using Rails 3, and we're having to build
I have some data like this: 1 2 3 4 5 9 2 6
I want use html5's new tag to play a wav file (currently only supported
Seemingly simple, but I cannot find anything relevant on the web. What is the
Does anyone know how can I replace this 2 symbol below from the string
this is what i have right now Drawing an RSS feed into the php,

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.