Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the most efficient way in XCode to add a delegate's or protocol's methods to the .m file?

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's 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.

like image 728
craig Avatar asked Jul 30 '09 13:07

craig


2 Answers

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.

like image 146
Karel Bílek Avatar answered Oct 22 '22 15:10

Karel Bílek


Instead of xCode, you can use appCode, "Generate" feature is usefull

like image 42
cleexiang Avatar answered Oct 22 '22 16:10

cleexiang