Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
454 views
in Technique[技术] by (71.8m points)

ide - 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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...