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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T23:39:40+00:00 2026-06-16T23:39:40+00:00

I have a very weird situation. I am using AppDelegate like this: appDelegate =

  • 0

I have a very weird situation.

I am using AppDelegate like this:

appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];

and save different values there to share among the application.

e.g

@property (nonatomic, retain) NSString *campaignTitle;

I the user opened the application for the first time – I can assign values to the properties and change them even a few time during the application lifecycle.

e.g.

appDelegate.campaignTitle = theTitle;

However, if the user clicked on home button, and then re-opend the application, if I try to assign new values – the appDelegate values are not changed and stay with the old ones.

What is 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-06-16T23:39:43+00:00Added an answer on June 16, 2026 at 11:39 pm

    You can’t use AppDelegate this way. It isn’t designed as a persistent store.

    If the data being saved is only small then you should be using NSUserDefaults to save it. For anything more complex you should be using CoreData.

    Secondly, you shouldn’t be using the AppDelegate to store global data at all. It’s much better practise to use a separate singleton class to store this type of information. You can then encapsulate the get and set methods of the data to put them into the NSUserDefaults for you.

    i.e.

    SingletonClass.m
    
    - (NSString*)campaignTitle
    {
        return [[NSUserDefaults standardUserDefaults] objectForKey:@"CampaignTitle"];
    }
    
    - (void)setCampaignTitle:(NSString*)campaignTitle
    {
        [[NSUserDefaults standardUserDefaults] setObject:campaignTitle forKey:@"CampaignTitle"];
        [[NSUserDefaults standardUserDefaults] synchronize]];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We are facing a very weird situation using Visual Studio 2005: There is a
I have a very weird problem. This ONLY affects Firefox on Mac, using the
I have encountered a very weird situation in Python. I have a while True:
I have a very weird thing to do and simply don't know how. This
So, I have this very weird error - Some advanced PHP devs might also
I have come across a very weird error. I'm on Solaris 10, using Ruby
This is very weird. I have the following code: Assert.AreEqual(new DateTime(2000, 1, 1), DateTime.ParseExact(2000,
i know this question was asked before but i have this very weird beginner
I am stuck in a very weird situation. There is a two method defined
I have this very weird issue that I cant really get why it's not

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.