有没有一种方法可以将对象的保留计数快速注销到Xcode的控制台中?
如果没有,那么下一个最佳选择是什么?
最佳答案
使用CFGetRetainCount
函数
例子:
// `CFGetRetainCount` is only available in the `Foundation` module
import Foundation
print(CFGetRetainCount(object))
在这里阅读更多:https://developer.apple.com/reference/corefoundation/1521288-cfgetretaincount
希望对大家有帮助