Swift关闭内存使用情况

时间:2018-09-24 18:04:32

标签: ios swift closures

使用闭包会导致内存压力,并且调试器会因内存问题终止应用程序。这是我定义的简单闭包,并将其作为参数传递给不同的函数。如果我在需要的地方用两行代码替换闭包,则内存压力消失了。传递给函数的闭包是否会无限期保留在参数中传递的outputPixelBuffersampleBuffer

let videoProcessor: (CMSampleBuffer, CVPixelBuffer) throws -> Void = { (sampleBuffer, outputPixelBuffer) in
    if let imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer), CFGetTypeID(imageBuffer) == CVPixelBufferGetTypeID() {
        do {
            try delegate.processPixelBuffer(self, inputPixelBuffer: imageBuffer, toPixelBuffer: outputPixelBuffer)
        } catch {
            fatalError("Failed processing pixel buffer")
        }
    }
}

1 个答案:

答案 0 :(得分:1)

您正在捕获对自我的强烈引用,从而导致循环。在闭包参数之前添加捕获列表-[弱自我],然后在其中添加

 {
     _id: 0ao8feub0aoleuc
     externalId: aaaaaaaa
 }

 {
     _id: 93084u98aoegu9
     externalId: bbbbbbb
 }

 {
     _id: fdhcfidgcfyid8
     externalId: ccccc
 }

,然后将所有对self的引用(甚至是当前隐式的)替换为Strongself。我不在可以随时编辑您的代码的设备上,但这应该可以做到。