Swift 2中的新@convention(c):我该如何使用它?

迁移到Swift 2之后,我遇到了一个错误,指出我现在应该使用@convention(c)(T) – >我试过排列,但到目前为止还没有运气.
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) -> Int
let 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.

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...