Reputation: 471
I am working on a project, that reads the bank cards. The card reader company provided a .framework
SDK but does not provide any technical support.
I search on Google and find out how to add .framework
into the project. I followed the following steps.
After cleaning the project and rebuild still the framework classes are unknown to my project.
Do I miss something? or I am going on the wrong way.
My project is on Swift and the framework is on Objective-C.
Upvotes: 0
Views: 150
Reputation: 3395
You need use bridge header and there you need to import your Objective C framework.
Upvotes: 0