swift Timer循环引用,导致内存溢出

使用addTarget方法创建timer,会产生强引用,导致内存溢出,ps:有问题的api干嘛开放出来,真tm坑

Timer.scheduledTimer(timeInterval: <#T##TimeInterval#>, target: <#T##Any#>, selector: <#T##Selector#>, userInfo: <#T##Any?#>, repeats: <#T##Bool#>)

建议使用以下,不会内存溢出,

Timer.scheduledTimer(withTimeInterval: <#T##TimeInterval#>, repeats: <#T##Bool#>, block: <#T##(Timer) -> Void#>)

你可能感兴趣的:(swift Timer循环引用,导致内存溢出)