[Swift]OC的类方法在Swift中写法
2015-07-20 本文已影响7587人
糖醋大排
Swift中类方法
class func customizedNavigationController() -> UINavigationController{
代码
}
对象方法
Swift中实例方法
func customizedNavigationController() -> UINavigationController{
代码
}
类方法前面加小写的class