Reputation: 851
When I was programming on eclipse, I remember that there was an option to auto implement interface methods (first implement the interface in the class and then implements methods right mouse clicking in the class body). Is there any similar option for to auto implement protocol methods in Xcode? I think that could be a cool features, saving lots of time... Thanks a lot to everyone that have any "solutions" to my trouble.
Upvotes: 2
Views: 1233
Reputation: 6484
Not the same as Eclipse but you can take advantage of XCode Code Snippets feature once configured ... see https://github.com/burczyk/XcodeSwiftSnippets http://nshipster.com/xcode-snippets/ to get examples on how to
Upvotes: 1