Parcourir la source

Fix crash when reload with overlays presented (#5774)

Yogev Ben David il y a 5 ans
Parent
révision
2fa17aaaca
No account linked to committer's email address
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      lib/ios/RNNOverlayManager.m

+ 1
- 1
lib/ios/RNNOverlayManager.m Voir le fichier

@@ -30,7 +30,7 @@
30 30
 }
31 31
 
32 32
 - (void)dismissAllOverlays {
33
-    for (RNNOverlayWindow* overlayWindow  in _overlayWindows) {
33
+    for (RNNOverlayWindow* overlayWindow  in [_overlayWindows reverseObjectEnumerator]) {
34 34
         [self detachOverlayWindow:overlayWindow];
35 35
     }
36 36
 }