正在加载c dylib

时间:2014-06-04 13:13:52

标签: swift

如何将动态库(.dylib)导入Swift?我想使用libxml2.dylib。我将它作为框架添加到我的项目中,但我无法使用它。

import libxml说:No such module

2 个答案:

答案 0 :(得分:3)

为了在Swift中使用C功能函数,必须通过Objective-C包装器和桥接头来公开它们。另请参阅the Apple interop documentation

答案 1 :(得分:1)

你需要

 #import <libxml/tree.h>
 #import <libxml/parser.h>

进入[YOUR-APP] -Bridging-Header.h