XCode: Possible to auto-create stubs for methods required by Protocol interface? - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T23:00:38Zhttp://stackoverflow.com/feeds/question/1694325http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1694325/xcode-possible-to-auto-create-stubs-for-methods-required-by-protocol-interface5XCode: Possible to auto-create stubs for methods required by Protocol interface?Eric Farrarohttp://stackoverflow.com/users/2057692009-11-07T20:35:49Z2009-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#16944481Answer by Niels Castle for XCode: Possible to auto-create stubs for methods required by Protocol interface?Niels Castlehttp://stackoverflow.com/users/1233402009-11-07T21:18:02Z2009-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#16957140Answer by Kevin Ballard for XCode: Possible to auto-create stubs for methods required by Protocol interface?Kevin Ballardhttp://stackoverflow.com/users/5822009-11-08T07:59:32Z2009-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#17197162Answer by jessecurry for XCode: Possible to auto-create stubs for methods required by Protocol interface?jessecurryhttp://stackoverflow.com/users/1517922009-11-12T03:33:20Z2009-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#17592931Answer by Kevin for XCode: Possible to auto-create stubs for methods required by Protocol interface?Kevinhttp://stackoverflow.com/users/2141222009-11-18T21:45:10Z2009-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#17929060Answer by Brad for XCode: Possible to auto-create stubs for methods required by Protocol interface?Bradhttp://stackoverflow.com/users/2181282009-11-24T21:03:41Z2009-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>