I just created a framework in swift, and its working fine in swift project but in objective c I am getting errors like Undefined symbols for architecture armv7:
. I just checked the available architectures using lipo -info
, its showing both simulator and device architectures. Also I referred this link but no use.
Attached image also.
I'll appreciate any help, Thank you.
Using swift framework in objc
305 Views Asked by Naveen Reddy At
2
There are 2 best solutions below
7

Here below is to do list in your Framework.
Swift classes usage in Objective C classes
- Use Open Keyword before class name in Swift
- Use @objc Keyword before Open Keyword of Swift class
- Import all header of objective c classes in Umbrella file YourProject.h those are consuming Swift Classes.
- Use #import in Objective c
I followed Apple Mix and Match approach. Hope this will help. Thanks
To access a swift class in objc, that is not inherited from NSObject you need to:
@objc public class yourUtils
https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html