Hi, i have a small problem when using objectivec i...
# kotlin-native
f
Hi, i have a small problem when using objectivec interop def files. When i include
Copy code
#import <Foundation/NSBundle.h>
im getting the following error
Copy code
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h:91:143: error: function does not return NSString
i couldn't find anything that would explain this error. The error is also happening when i include
Copy code
#import <Foundation/Foundation.h>
or
Copy code
#import <UIKit/UIView.h>
since that all includes all foundation headers internally.
f
thanks, i couldnt find that issue link.
thanks alot, the workaround
Copy code
compilerOpts("-DNS_FORMAT_ARGUMENT(A)=")
worked great.