Hello, I’ve been trying hard to add a static native 3rd party SDK in obj-c to my project and use it within my NS project.
So far I’ve added the sdk.framework file into my app/app_resources/ios/frameworks/ I don’t know if this folder is correct but it seems to compile (tns build and run) into the deployed app. Now the problem is: how can I use the obj-c code in my TypeScript project? Can someone provide samples?
I’ve seen somewhere some usages but I don’t know how to import it to my .ts files and use it. This is getting pretty hard so far and I’ve spent a lot of effort without any success around this.
edit: for example purposes let’s say I’ve the object foo() in my obj-c framework and want to use it in the .ts file.
Thank you.