I have also been having a headache with this problem. But nowAppCodepart of my problems have been solved.
I copy all the methods that need to be implemented from .h to the .m file at once, and then implement them one by one.
Because I have experienced the powerful functions of Intelij Idea, I know that AppCode is certainly equally powerful in terms of convenience in code editing, so now I use it in combination with Xcode and AppCode.
AppCode uses the versatile Ctrl+Enter to automatically implement all methods.
Xcode has the functionality you mentioned.
The method is declared in the .h file
When implementing a method in a .m file, enter
First you can see auto-completion.
:)
I have also been having a headache with this problem. But now
AppCode
part of my problems have been solved.I copy all the methods that need to be implemented from .h to the .m file at once, and then implement them one by one.
Because I have experienced the powerful functions of
Intelij Idea
, I know thatAppCode
is certainly equally powerful in terms of convenience in code editing, so now I use it in combination with Xcode and AppCode.AppCode
uses the versatileCtrl
+Enter
to automatically implement all methods.