Objective C test class using Swift code

前端 未结 2 525
轮回少年
轮回少年 2021-02-05 14:37

I have a swift protocol IModelIdProvider in the MyProjectName folder. I have created an objective-c unit test class named RemoteModelFactoryTest<

2条回答
  •  孤城傲影
    2021-02-05 15:30

    To import a set of Objective-C files in the same framework target as your Swift code, you’ll need to import those files into the Objective-C umbrella header for the framework.

    To import Swift code into Objective-C from the same framework

    Under Build Settings, in Packaging, make sure the Defines Module setting for that framework target is set to Yes. Import the Swift code from that framework target into any Objective-C .m file within that framework target using this syntax, and substituting the appropriate names...

    https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/buildingcocoaapps/MixandMatch.html#//apple_ref/doc/uid/TP40014216-CH10-XID_75

提交回复
热议问题