Hello,
I have a following problem. I define an Objective-C interface as such:
This header is then imported to a Swift library and the following items are not visible: InputTransform, OutputTransform, makeInputTransform and makeOutputTransform.
These were added recently, so I thought it's an issue with build and compilation, but I cleaned all the build folders, and I still can't get it to work.
Any ideas?
I have a following problem. I define an Objective-C interface as such:
Code Block objective-c extern @interface CGRenderOptions : NSObject - (id _Nonnull) init; - (void)makeInputTransform:(NSString* _Nullable)transform; - (void)makeOutputTransform:(NSString* _Nullable)transform; @property(assign) BOOL ColorManaged; @property(assign) CGBypassOption Bypass; @property(assign) BOOL FalseColor; @property(assign) MTLSize* _Nullable OutputSize; @property(assign) NSString* _Nullable InputTransform; @property(assign) NSString* _Nullable OutputTransform; @property(assign) NSString* _Nullable WatermarkString; @end
This header is then imported to a Swift library and the following items are not visible: InputTransform, OutputTransform, makeInputTransform and makeOutputTransform.
These were added recently, so I thought it's an issue with build and compilation, but I cleaned all the build folders, and I still can't get it to work.
Any ideas?