• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
warning: assignment from distinct Objective-C type
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

warning: assignment from distinct Objective-C type


  • Subject: warning: assignment from distinct Objective-C type
  • From: Stuart Malin <email@hidden>
  • Date: Mon, 10 Mar 2008 22:19:43 -1000

I have a line of code:

	xmppStream = [[XMPPStream alloc] initWithDelegate:self];

That when compiled, receives a warning:

warning: assignment from distinct Objective-C type

Now, what's odd to me, is if I change the source code to this:

	xmppStream = [XMPPStream alloc];
	[xmppStream initWithDelegate:self];

It compiles without any warning.

The interface for the XMPPStream initializer is:

	- (XMPPStream*) initWithDelegate:(id)initialDelegate;

And, in the file that is allocating and initializing, the xmppStream variable is defined as:

	XMPPStream	*xmppStream;

So I don't see any reason that I should get the warning.
Any clues about why this happens would be appreciated.
I'm sure I must be overlooking something obvious...

This is happening with Xcode 2.4.1

[I have posted to both Cocoa and Xcode because I have no idea which list would be better for this]



_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


  • Follow-Ups:
    • Re: warning: assignment from distinct Objective-C type
      • From: Chris Hanson <email@hidden>
    • Re: warning: assignment from distinct Objective-C type
      • From: "Julien Jalon" <email@hidden>
    • Re: warning: assignment from distinct Objective-C type
      • From: Ron Fleckner <email@hidden>
  • Prev by Date: Re: Cocoa way to get list of user accounts?
  • Next by Date: Re: warning: assignment from distinct Objective-C type
  • Previous by thread: Re: Creating an NSSocketPort on an available port?
  • Next by thread: Re: warning: assignment from distinct Objective-C type
  • Index(es):
    • Date
    • Thread