ARSCNView freezes when adding 14 ARAnchor subclass objects with strong reference
问题 I have next code: guard let feauturePoint = frame.hitTest(normalizedPoint, types: .featurePoint).first?.worldTransform else { return } let anchor = MyAnchorSubclass(transform: feauturePoint, plus: someAdditionalInfo) arSession.add(anchor: anchor) This function creates and adds object of my subclass of ARAnchor. Then... func renderer(_ renderer: SCNSceneRenderer, didAdd node: SCNNode, for anchor: ARAnchor) { guard let anchor = anchor as? MyAnchorSubclass else { return } anchors.append(anchor)