Swift中类方法
class func customizedNavigationController() -> UINavigationController{
代码
}
对象方法
Swift中实例方法
func customizedNavigationController() -> UINavigationController{
代码
}
类方法前面加小写的class
Swift中类方法
class func customizedNavigationController() -> UINavigationController{
代码
}
对象方法
Swift中实例方法
func customizedNavigationController() -> UINavigationController{
代码
}
类方法前面加小写的class