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.
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.
Instead of xCode, you can use appCode, "Generate" feature is usefull
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With