On 18/02/2010, at 11:37 PM, Michael Davey wrote: > My class is describes as follows: > > @interface AppController : NSObject > <MGTwitterEngineDelegate,NSTableViewDataSource> > > I tried removing NSObject and putting it there, but that did not work - any > clues? > > Thanks, btw >
Yes, do what I told you, remove the NSTableViewDataSource from the protocol list, like this: > @interface AppController : NSObject <MGTwitterEngineDelegate> --Graham _______________________________________________ Cocoa-dev mailing list ([email protected]) 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: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
