We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ce51c3 commit 4bab2a9Copy full SHA for 4bab2a9
Toolkit/ArcGISToolkit/AR/ArcGISARView.swift
@@ -287,13 +287,13 @@ public class ArcGISARView: UIView {
287
/// Operations that happen after device tracking has started.
288
fileprivate func finalizeStart() {
289
DispatchQueue.main.async { [weak self] in
290
- guard let strongSelf = self else { return }
+ guard let self = self else { return }
291
// Run the ARSession.
292
- if strongSelf.isUsingARKit {
293
- strongSelf.arSCNView.session.run(strongSelf.arConfiguration, options: .resetTracking)
+ if self.isUsingARKit {
+ self.arSCNView.session.run(self.arConfiguration, options: .resetTracking)
294
}
295
296
- strongSelf.isTracking = true
+ self.isTracking = true
297
298
299
0 commit comments