I need to extend the functionality of a library Pod written in Objective C (the rest of the project is in Swift). I created the MyClass+Category .h and .m files (as a Category), with the pod selected as target, but I get a file not found error in the header at:
#import <MyLib/MyLib.h>
How do I get the category's header to find the original class?
An alternative would be to write the extension in Swift, are there any gotchas there I should be aware of?
Also grateful for any better ways there might be.