Objective和Swift混编 官方解释
[Apple Documentation Explanation] (https://developer.apple.com/library/content/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html)
重点
- 1.在Objective-C代码里使用Swift,则在Objective-C代码里使用
#import "ProductModuleName-Swift.h"
即可 - 2.在Swift代码里使用Objective-C,则在Objective-C的桥接文件
ProductModuleName-bridgeing-header.h
里,导入你要在Swift里使用的OC类
后续会补充官网的解释