当前位置:  开发笔记 > IOS > 正文

将Objective-C Framework(CocoaPod)导入Swift?

如何解决《将Objective-CFramework(CocoaPod)导入Swift?》经验,为你挑选了1个好方法。

我正在尝试将libjingle_peerconnection框架导入我的Xcode项目,但由于某种原因,我无法import RTCICEServer在Swift源文件中导入Objective-C头.我试图使用头文件等.我做错了什么?

# Uncomment this line to define a global platform for your project
# platform :ios, '8.0'
# Uncomment this line if you're using Swift
use_frameworks!

target 'VideoRTCTest' do
    pod "libjingle_peerconnection"
end

target 'VideoRTCTestTests' do

end

target 'VideoRTCTestUITests' do

end

在此输入图像描述



1> SwiftArchite..:

1.创建一个xxx-Bridging-Header

使用您选择的方法向项目添加桥接头,最简单的方法是创建单个.m文件并回答此对话框中的Create Bridging Header:

创建桥接标题

2.在桥接标题中引用您的Pod

包括您的文件如下:

//
//  Use this file to import your target's public headers that
// you would like to expose to Swift.

#import "RTCICEServer.h"

3. Objective-C暴露于Swift

进入桥接头后,您无需在Swift中导入Obj-C类.直接使用这些:

let uri = URL(fileURLWithPath: "")
let rtc:RTCICEServer = RTCICEServer(uri: uri, username: "", password: "")
print(rtc)

这里描述了另一个例子.


►在GitHub上找到此解决方案以及有关Swift Recipes的其他详细信息.

推荐阅读
手机用户2402852307
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有