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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T07:39:08+00:00 2026-05-21T07:39:08+00:00

I have an object declared in my app delegate: @interface MyAppDelegate : NSObject <UIApplicationDelegate>

  • 0

I have an object declared in my app delegate:

@interface MyAppDelegate : NSObject <UIApplicationDelegate> {
    ClassName *className;
}

In another class, I include the app delegate:

#import "MyAppDelegate.h"

@implementation AnotherClass
-(void)doMethod {
    [className doClassNameMethod];
}

This fails at compile time due to className being undeclared. Shouldn’t it be accessible, since I’ve included the MyAppDelegate, where className is declared? I need AnotherClass.doMethod to be accessing the same instance that is created in MyAppDelegate.

Any help on this would be most appreciated. 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-21T07:39:08+00:00Added an answer on May 21, 2026 at 7:39 am

    To access a instance variable in one class from another class, you should create a property.

    @interface MyAppDelegate : NSObject <UIApplicationDelegate> {
        ClassName *className;
    }
    
    @property (nonatomic, readonly) ClassName *className;
    
    ...
    @end
    

    From the other class you may then access this property like this:

    @implementation AnotherClass
    - (void) doMethod {
        MyAppDelegate *delegate = (MyAppDelegate *)[[UIApplication sharedApplication] delegate];
        [delegate.className doClassNameMethod];
    }
    @end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a C# interface with certain method parameters declared as object types. However,
Well, I have something like this: trait A class Serving(a: => A) object App
I have an object in my app that is declared as an instance var.
I have a c# object with a property called Gender which is declared as
I have a property on a domain object that is declared in a many-to-one
I have a COM object written using the MS ATL library. I have declared
I have two classes declared like this: class Object1 { protected ulong guid; protected
I have model class CreatedMixin(object): __abstract__ = True @declared_attr def created_by(cls): return Column(Integer, ForeignKey('user.user_id',
In an asp.net webforms app I have created a base class for my pages
I have a UIWebView object declared in my view controller and I want to

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.