+ (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 这样才能保证类型一致
评论