XCode: Possible to auto-create stubs for methods required by Protocol interface? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T23:00:38Z http://stackoverflow.com/feeds/question/1694325 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1694325/xcode-possible-to-auto-create-stubs-for-methods-required-by-protocol-interface 5 XCode: Possible to auto-create stubs for methods required by Protocol interface? Eric Farraro http://stackoverflow.com/users/205769 2009-11-07T20:35:49Z 2009-11-24T21:03:41Z <p>Coming from an Eclipse / Java background, one of my favorite features is the ability to quickly stub out all the methods required by an interface. In Eclipse, I can choose 'Override / implement' from the source menu to generate stub methods for any method of the Interface.</p> <p>I'd like to do the same thing in Objective-C. For instance, if I declare a class that implements the 'NSCoding' protocol, I'd like to have XCode automatically generate the methods required to implement this Protocol. It's frustrating to have to look-up and then copy/paste the signatures of the required methods every Protocol that I'm trying to implement.</p> <p>I've been trying for awhile to find out if this is possible, but haven't found anything promising yet. Is this possible in XCode?</p> http://stackoverflow.com/questions/1694325/xcode-possible-to-auto-create-stubs-for-methods-required-by-protocol-interface/1694448#1694448 1 Answer by Niels Castle for XCode: Possible to auto-create stubs for methods required by Protocol interface? Niels Castle http://stackoverflow.com/users/123340 2009-11-07T21:18:02Z 2009-11-07T21:18:02Z <p>Your can create scripts for the scripting menu item in AppleScript, Perl, Python, Ruby, or any other scripting language that go in the scripting menu.</p> <p>Your could place the insertion point in the .m file and have the script look up the corresponding .h file. Locate the protocols supported and so forth...</p> <p>MacTech ran an article in 2007 <a href="http://www.mactech.com/articles/mactech/Vol.23/23.01/2301XCode/index.html" rel="nofollow">Xcode Menu Scripts</a></p> http://stackoverflow.com/questions/1694325/xcode-possible-to-auto-create-stubs-for-methods-required-by-protocol-interface/1695714#1695714 0 Answer by Kevin Ballard for XCode: Possible to auto-create stubs for methods required by Protocol interface? Kevin Ballard http://stackoverflow.com/users/582 2009-11-08T07:59:32Z 2009-11-08T07:59:32Z <p>Xcode 3.2 will autocomplete known method implementations. In other words, if the method is declared somewhere (for example, in a protocol), when you start to type it in a .m file, Xcode 3.2 will autocomplete the method signature for you. This isn't quite what you asked for, but it is awfully handy.</p> http://stackoverflow.com/questions/1694325/xcode-possible-to-auto-create-stubs-for-methods-required-by-protocol-interface/1719716#1719716 2 Answer by jessecurry for XCode: Possible to auto-create stubs for methods required by Protocol interface? jessecurry http://stackoverflow.com/users/151792 2009-11-12T03:33:20Z 2009-11-12T03:33:20Z <p>I believe that <a href="http://www.kevincallahan.org/software/accessorizer.html" rel="nofollow">Accessorizer</a> will do what you want.</p> http://stackoverflow.com/questions/1694325/xcode-possible-to-auto-create-stubs-for-methods-required-by-protocol-interface/1759293#1759293 1 Answer by Kevin for XCode: Possible to auto-create stubs for methods required by Protocol interface? Kevin http://stackoverflow.com/users/214122 2009-11-18T21:45:10Z 2009-11-18T21:45:10Z <p>Accessorizer will write the encode and decode methods for ivars passed to it (NSCoding protocol and for NSDocument archiving). It will also generate string constants either static or #define with a custom prefix; copyWithZone:; and other things if you need - all from a simple shortcut via Services or from the toolbar. <a href="http://www.kevincallahan.org/software/keyedArchiving.html" rel="nofollow">Accessorizer keyed archiving</a></p> http://stackoverflow.com/questions/1694325/xcode-possible-to-auto-create-stubs-for-methods-required-by-protocol-interface/1792906#1792906 0 Answer by Brad for XCode: Possible to auto-create stubs for methods required by Protocol interface? Brad http://stackoverflow.com/users/218128 2009-11-24T21:03:41Z 2009-11-24T21:03:41Z <p>I'm also looking for a way to generate method stubs for the protocols in my header file. I checked out Accessorizer and it looks to be a handy tool but unless I missed something I didn't find a way to get it to generate method stubs for a protocol. </p> <p>Eric, If you found another solution please post what you found. It's amazing to me that XCode doesn't already have this built into the IDE.</p>