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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T02:35:02+00:00 2026-05-24T02:35:02+00:00

I have a viewController (lets call it vcA) and this viewController has a NSArray

  • 0

I have a viewController (lets call it vcA) and this viewController has a NSArray property declared and synthesized.

NSArray *myProperty;

...
@property (nonatomic, retain) NSArray *myProperty;

and then synthesized on .m

this vcA is a delegate for another viewController, vcB.

Inside vcB I do:

NSArray *getMyPropertyFromDelegate = (NSArray *)[delegate myProperty];

and I receive an error saying warning: Semantic Issue: Instance method ‘-myProperty’ not found (return type defaults to ‘id’)

I know I can silent this warning changing the line to

NSArray *getMyPropertyFromDelegate = (NSArray *)[(vca*)delegate myProperty];

and importing vcA.h, but I am trying to make vcB as independent as possible, because the delegate can change.

How do I do that working just with the delegate property?

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-24T02:35:02+00:00Added an answer on May 24, 2026 at 2:35 am

    I suggest you write a custom protocol.

    Make vca view controller conforming to the protocol, and in vcB, declare the delegate property :

    @property(retain) id <MyProtocol> delegate;
    

    This means the delegate can be any type, as long as it conforms to MyProtocol.

    Here is an example.

    // MyProtocol.h
    @protocol MyProtocol <NSObject>
    
    @property(retain) NSArray *myProperty;
    
    @end
    
    // vca.h
    @interface vca : XXXX <MyProtocol> {
    ....
    }
    @property(retain) NSArray *myProperty;
    
    
    // vca.m
    @synthesize myProperty; // or provide a getter
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Quick problem: I have an UITabBarController with 2 navigation controllers [lets call them Left
I have a viewController called HaveScrollController, and this is something like this: @interface HaveScrollController
This is a noob question. If I have a ViewController and inside that class
//Edit: Really, nobody has any suggestions or thoughts on this? Have I asked the
Lets say I have a view, myView, a view controller, myViewController, and some sort
I have a viewController (Planner) that loads two view controllers (InfoEditor and MonthlyPlan) when
This is a weird issue. I have created a view controller with a nib
I have a BSjax class that I wrote that lets me make async calls
I have a UIViewController — let's call it FormController — which is simply a
everyone, i have no idea why this doesn't work hopefully someone here can help

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.