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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T21:09:39+00:00 2026-05-26T21:09:39+00:00

I have an object that is used between all my viewControllers so I have

  • 0

I have an object that is used between all my viewControllers so I have stuck it inside the application delegate. (I assume this is the correct place?).

If an action inside a viewController fires that needs to send something to said object I am performing the following:

- (IBAction)sliderMoved:(id) sender{
    MyAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
    [[delegate myObject] setSpeed:(int)slider];
  //  [delegate release];
}

I am a bit concerned I am not releasing the delegate object anywhere, is this ok? If I remove the commented line [delegate release] it just crashes the application.

  • 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-26T21:09:40+00:00Added an answer on May 26, 2026 at 9:09 pm

    You don’t own the delegate object that you create in this snippet. You haven’t created it with alloc, new, or a copy. Nor have you retained it. So, it is not your responsibility to release it.

    As for putting an object in the Application delegate just to be able to access it from other parts of your code – that is poor OOP design IMO.

    Edited to add

    I suppose I had better give an example

    Suppose you have a class MyClass that you want to create an object of that you can pass around.

    You create it in the Application delegate, which it seems you are already doing:

    MyObject *myObject = [[MyObject alloc] init];
    

    Then you create another view controller – which you would normally do, except that this view controller has a property:

    @property(retain) MyObject *object;
    

    And then you set this property when you create the view controller:

    YourViewController *vc = [[YourViewController alloc] init];
    vc.object = myObject;
    

    And, if you pass this object to other view controllers as you require.

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

Sidebar

Related Questions

I have a collection object that implements IList. Inside the collection I have used
In my application I have a DataSet that holds tables that are used in
I have a question with fluent interfaces. We have some objects that are used
I have a class containing Linq To SQL objects that are used to populate
I have two tables: object that has object_id column and avalues that have object_id
I have an object that is mapped to a cookie as a serialized base-64
I have an object that implements IDisposable that is registered with the Windsor Container
I have an object that needs a test if the object data is valid.
I have an object that starts a thread, opens a file, and waits for
I have an object that implements ArrayAccess , Iterator and Countable . That produces

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.