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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T03:47:05+00:00 2026-05-26T03:47:05+00:00

Here’s my scenario. I have a class A. Inside its implementation I create object

  • 0

Here’s my scenario. I have a class A. Inside its implementation I create object of type B and set B’s delegate to self (So B.delegate = self somewhere inside class A’s implementation).

And class A has an instance method - (void)printThis;

Now inside B’s implementation, when I try to do [delegate printThis];, it gives me this error:
“No known instance method for selector printThis”

Of course this is when I have enabled ARC. The above delegation pattern used to work fine in iOS 4.x without the ARC. And it still does when I switch OFF ARC. What has ARC got to do with passing messages to delegates?

Skeleton code:

A.h

@class B;

@interface A: blah blah
{
    B objB;
}

-(void) printThis;

A.m

objB = [[B alloc] init];
objB.delegate = self;

- (void)printThis {
    //doSomething
}

B.h

@interface B: blah blah
{
    //id delegate; //used to be there, now I just property & synthesize
}

@property (nonatomic,weak) id delegate;

B.m

@synthesize delegate;

[delegate printThis]; //error with ARC ON, works with OFF

IMPORTANT EDIT:

And mind you this happens for a method here and there. For instance I have a few other methods in A like printThat etc etc which work without errors. I’m clueless as to what is happening!

  • 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-26T03:47:05+00:00Added an answer on May 26, 2026 at 3:47 am

    You need to define -printThis in a protocol and make A implement this protocol. You also need to mark the delegate as conforming to this delegate.

    i.e.:

    @protocol Printer <NSObject>
    
    - (void)printThis;
    
    @end
    
    @interface A : NSObject <Printer>
    //...
    @end
    
    @interface B : //...
    
    @property (nonatomic, weak) id<Printer> delegate;
    
    @end
    

    ARC needs to know about the interface for method calls in order to properly manage the memory correctly. If there isn’t a definition then it’ll complain.

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

Sidebar

Related Questions

Here's my scenario - I have an SSIS job that depends on another prior
Here's the scenario: I have a local git repository that mirrors the contents of
here is the scenario 1: user starts to type some word, autocomplete engine shows
Here's a problem I ran into recently. I have attributes strings of the form
Here is the issue I am having: I have a large query that needs
Here is the scenario: I'm writing an app that will watch for any changes
Here we go again, the old argument still arises... Would we better have a
Here is what I have: Dim cmsManager As New Telerik.Cms.CmsManager() Dim currentNode As Telerik.Cms.Web.CmsSiteMapNode
Here's my scenario. I've got SharePoint 2010 running on one server, with an SQL
Here's a strange question for you guys, I have a nice sorted list that

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.