• 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
Re: Protocol + Delegate = conflict types
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Protocol + Delegate = conflict types


  • Subject: Re: Protocol + Delegate = conflict types
  • From: "Christian Giordano" <email@hidden>
  • Date: Fri, 16 Jan 2009 09:57:46 +0000

Yep, that made the trick!

Thanks a lot, chr



On Fri, Jan 16, 2009 at 9:07 AM, Quincey Morris
<email@hidden> wrote:
> On Jan 16, 2009, at 00:38, Christian Giordano wrote:
>
>> // RemoteLoader.h
>> @protocol RemoteLoaderDelegate
>> -(void) onLoadingFail:(RemoteLoader *)loader;
>> -(void) onLoadingFinish:(RemoteLoader *)loader;
>> -(void) onLoadingProgress:(RemoteLoader *)loader;
>> @end
>>
>> @interface RemoteLoader : NSObject
>> {
>>        ...
>> }
>> ...
>> @end
>>
>> I get: "error: syntax error before 'RemoteLoader'"
>
> Your protocol has a forward reference, so this:
>
>> @class RemoteLoader;
>> @protocol RemoteLoaderDelegate
>> -(void) onLoadingFail:(RemoteLoader *)loader;
>> -(void) onLoadingFinish:(RemoteLoader *)loader;
>> -(void) onLoadingProgress:(RemoteLoader *)loader;
>> @end
>
> should take care of it.
>
>
> _______________________________________________
>
> 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
>
_______________________________________________

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

References: 
 >Protocol + Delegate = conflict types (From: "Christian Giordano" <email@hidden>)
 >Re: Protocol + Delegate = conflict types (From: Quincey Morris <email@hidden>)

  • Prev by Date: Re: ObjC in time-critical parts of the code
  • Next by Date: Re: Dealing with exceptions in a drawing stack
  • Previous by thread: Re: Protocol + Delegate = conflict types
  • Next by thread: NSTableView with complex cells ?
  • Index(es):
    • Date
    • Thread