I have an Xcode template file:
#import "___FILEBASENAME___.h" @implementation ___FILEBASENAMEASIDENTIFIER___ @end
This will create an example file, for example:
#import "ExampleFile.h" @implementation ExampleFile @end
However, due to some complexity in our build system, I need to import files by their file path.
For example, if I created ExampleFile.m inside the Path/To/ folder. Then my desired result is:
// Desired template output
I tried looking through some examples of Apple patterns, but didn't seem to find a way to make it work.
I also attacked the ___DIRECTORY___ link here , but it doesn't seem to work for me when I tried to use it.
Does anyone know if there is a way to do this?
source share