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

  • Home
  • SEARCH
  • 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 6920705
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T10:10:57+00:00 2026-05-27T10:10:57+00:00

Good Day. On my AppDelegate.h @property (nonatomic, retain) Config *AppConfig; Within my AppDelegate.m, I

  • 0

Good Day.

On my AppDelegate.h

@property (nonatomic, retain) Config *AppConfig;

Within my AppDelegate.m, I can access this without problems.

UIAlertView *alert = 
[[UIAlertView alloc] initWithTitle:@"Settings Saved" 
                           message:[NSString stringWithFormat:@"%@\n%@\n%@\n%@\n%@",
                                    AppConfig.Username, AppConfig.Password, 
                                    AppConfig.Server, AppConfig.LastRefNo,
                                    AppConfig.LastSync]
                          delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
[alert release];

AppConfig is being populated within AppDelegate as follows

- (void)GetSettings
{
    // Define our table/entity to use  
    NSEntityDescription *entity = [NSEntityDescription entityForName:@"Config" inManagedObjectContext:managedObjectContext];   

    // Setup the fetch request  
    NSFetchRequest *request = [[NSFetchRequest alloc] init];  
    [request setEntity:entity];   

    // Define how we will sort the records  
    NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"Username" ascending:NO];  
    NSArray *sortDescriptors = [NSArray arrayWithObject:sortDescriptor];  
    [request setSortDescriptors:sortDescriptors];  
    [sortDescriptor release];   

    // Fetch the records and handle an error  
    NSError *error;  
    NSMutableArray *mutableFetchResults = [[managedObjectContext executeFetchRequest:request error:&error] mutableCopy];   

    if (mutableFetchResults != nil && [mutableFetchResults count] > 0) {  
        // Save our fetched data
        AppConfig = [mutableFetchResults objectAtIndex:0];
    }  
    else 
    {
        AppConfig = nil;
    }

    [mutableFetchResults release];  
    [request release];  
}

If I try to access AppConfig from another ViewController through this

- (void)loadAccount
{
    SpotlightAppDelegate *_appDelegate = (SpotlightAppDelegate *) [[UIApplication sharedApplication] delegate];

    txtUsername.text = [_appDelegate.AppConfig valueForKey:@"Username"];
    txtPassword.text = [_appDelegate.AppConfig valueForKey:@"Password"];
}

NSUnknownKeyException is thrown on line 2.

Thanks in advance.

  • 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-27T10:10:57+00:00Added an answer on May 27, 2026 at 10:10 am

    Ok I found it after resting for sometime 🙂

    I should have called retain on AppConfig.

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

Sidebar

Related Questions

Good Day, Can someone confirm what was said at the bottom of this post
Good day, I need to extract portion of string which can looks like this:
Good day, all. I know that this is a pretty basic question in terms
Good Day, I have two connection strings defined in my web.config file. <connectionStrings> <add
Good day! I want to show all the pictures in the folder, but this
Good day! I've a model that is binded from JSON request, say like this:
Good day all, First of all, maybe i went about this the wrong way
Good day... I have huge trouble with this and it drives me insane. My
Good day, My app has authorization form (SigninController) which is loaded in AppDelegate, and
Good day, I have found a strange quirk in Vim that I can't explain

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.