ソースを参照

Fix crash when reload with overlays presented (#5774)

Yogev Ben David 5 年 前
コミット
2fa17aaaca
No account linked to committer's email address
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      lib/ios/RNNOverlayManager.m

+ 1
- 1
lib/ios/RNNOverlayManager.m ファイルの表示

@@ -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
 }