SCNNode 内存不释放解决办法

2021-04-22  本文已影响0人  张科_Zack

原文
I had the same problem, with my SceneKit app leaking a lot of memory. The memory of the SCNNode is freed if you set its geometry property to nil before letting Swift deinitialize it.

Here is an example of how you may implement it:

class ViewController: UIViewController {
    @IBOutlet weak var sceneView: SCNView!
    var scene: SCNScene!
    override func viewDidLoad() {
        super.viewDidLoad()
        scene = SCNScene()
        sceneView.scene = scene
    }

    deinit {
        scene.rootNode.cleanup()
    }
}

extension SCNNode {
    func cleanup() {
        for child in childNodes {
            child.cleanup()
        }
        geometry = nil
    }
}


上一篇 下一篇

猜你喜欢

热点阅读