I'm not sure if Xcode does this, but Jetbrains' AppCode IDE automatically annotates overridden methods with a blue override symbol in the field, for example:

., In addition to this (also shown), I would also like to create some live templates (aka snippets of code in Xcode) to annotate overridden methods with the #pragma tag. I find this helps determine the standard structure in the following order:
- class methods
- initialization and destruction
- public methods / protocol methods
- overridden methods
- private methods
as well as the presence of patterns / snippets of code on the Internet. I can simply enter "override [tab]" and the IDE will create the #pragma tag for me.
. maybe you can even use OCLint to check if this structure is being followed.
Jasper blues
source share