Is there a quick fix / check so that the file names in the header comments actually match the file name?
I just made huge refactoring / convention changes and found that some of them I forgot to update the header comments for some files.
I know this other question about header comments . But I do not want to change the templates. I like the Xcode template giving me as it is. I just want to make sure it matches.
Example
#import <CoreData/CoreData.h>
@interface YYProxy : NSObject
Look, itโs XXShimnow YYProxyin the file now called YYProxy.h, but the header comment is still not right.
source
share