is there any way to automatically specify or remove useless imports in an .m file of Objective-C?
For example, a .m file:
#import "Ah" #import "Bh" #import "Ch"
But Bh in my .m file will never be used, is there a way to automatically specify or delete it, just like the AppCode IDE.
source share