前端之家收集整理的这篇文章主要介绍了
Swift中的"description",
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果要打印对象信息,在OC 中用到 description方法,在 swift 中需要遵守协议 DebugPrintable
extension <#className#>: DebugPrintable {
override var debugDescription: String {
return "description"
}
}
注意: 不能直接输出对象 使用方式应该为 println(obj.debugDescription)
原文链接:https://www.f2er.com/swift/327614.html