views:

924

answers:

2

When one Implements an Interface (equivalent to a Protocol in Objective-C) in the .Net environment, the IDE automatically adds the properties and methods that need to be implemented to the class' file. Is there a setting that will result in a similar behavior in the Xcode environment? Will it do the same for a delegate?

At this point, I find myself copying/pasting the protocol/delegate's methods from Apple's online documentation.

Thanks for your time.

Craig Buchanan

A: 

Copy-and-paste is the fastest way to do it with Xcode 3.1 as available online. A little script to parse a header and spit out protocol defs would be pretty cool, though…

Ben Stiglitz
Too bad there isn't an Xml webService for Xcode's documentation. That, in combination with a script, would do the job.
Craig
+1  A: 

Hello, sorry for late comment, I use this neat trick.

For example, your class is named "MyClass", you want it to have protocol NSTableDataSource. What you do is write

@interface MyClass : NSObject <NSTableDataSource> 
{ 
   ... usual stuff here ...
@end

then, you right-click on NSTableDataSource, click on "Jump to definition".... and you can copy it from there.

If you want it to be delegate of, let's say again, NSTableView, you just name the protocol NSTableViewDelegate (this is an actual protocol name!), right click on it, click on "Jump to definition" - and you have it there, you just have to ignore those preprocessor marks everywhere.

It's maybe not as easy as with for example Java interfaces and NetBeans, but it's not significantly slower.

Karel Bílek