美文网首页
id跟instancetype类型在swift中的转换

id跟instancetype类型在swift中的转换

作者: Mr_滑 | 来源:发表于2016-06-08 16:17 被阅读1802次

    id和instancetype类型在swift中的转换

    + (id)buttonWithType:(UIButtonType)buttonType

    class func buttonWithType(buttonType: UIButtonType) -> AnyObject!

    调用var button = UIButton.buttonWithType(UIButtonType.System) as UIButton

    + (instancetype)stringWithCString:(const char *)cString encoding:(NSStringEncoding)enc

    class func stringWithCString(cString: CString, encoding enc: UInt) -> Self!

    var str = NSString.stringWithCString("foo", encoding: NSUTF8StringEncoding)

    var cs = str.UTF8String

    只要object-c返回id类型的 都要在后面加as 这样才能保证类型一致

    转自http://www.myexception.cn/mobile/1746263.html

    相关文章

      网友评论

          本文标题:id跟instancetype类型在swift中的转换

          本文链接:https://www.haomeiwen.com/subject/wifwrttx.html