在swift中调用c方法

Posted by Genie on June 11, 2020

在swift中调用c方法 ,通过关键字_silgen_name

1
2
3
4
5
6
@_silgen_name("test") func c_test(a: Int32) -> Int32
func testSwift(input: Int32) {
    let result = c_test(a: input)
    print(result)
}

Call

testSwift(input: 1)