func foo(context: AnyObject?,wIDth: CGfloat) -> Int {}let bar = unsafeBitCast(foo,CFunctionPointer<(UnsafeMutablePointer<VoID>,float) -> Int>.self)您不再需要在Swift 2中创建CFunctionPointer.相反,您可以通过调用约定来注释您的类型,在本例中为c,并直接使用它.
typealias CFunction = @convention(c) (UnsafeMutablePointer<VoID>,float) -> Intlet bar = unsafeBitCast(foo,CFunction.self)
The Swift Programming Language的Type Attributes部分中@convention描述的相关位是:
总结The c argument is used to indicate a C function reference. The function value carrIEs no context and uses the C calling convention.
以上是内存溢出为你收集整理的Swift 2中的新@convention(c):我该如何使用它?全部内容,希望文章能够帮你解决Swift 2中的新@convention(c):我该如何使用它?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)