Skip to content

Commit 2b4d897

Browse files
yogevbdguyca
authored andcommitted
Fix pageSheet modals causing memory leak when swiped (#5601)
1 parent 507b675 commit 2b4d897

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

lib/ios/RNNModalManager.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ typedef void (^RNNTransitionRejectionBlock)(NSString *code, NSString *message, N
1212

1313
@end
1414

15-
@interface RNNModalManager : NSObject
15+
@interface RNNModalManager : NSObject <UIAdaptivePresentationControllerDelegate>
1616

1717
@property (nonatomic, weak) id<RNNModalManagerDelegate> delegate;
1818

lib/ios/RNNModalManager.m

+8
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ -(void)showModal:(UIViewController<RNNLayoutProtocol> *)viewController animated:
2929
UIViewController* topVC = [self topPresentedVC];
3030
topVC.definesPresentationContext = YES;
3131

32+
if (viewController.presentationController) {
33+
viewController.presentationController.delegate = self;
34+
}
35+
3236
RNNAnimationsTransitionDelegate* tr = [[RNNAnimationsTransitionDelegate alloc] initWithScreenTransition:viewController.resolveOptions.animations.showModal isDismiss:NO];
3337
if (hasCustomAnimation) {
3438
viewController.transitioningDelegate = tr;
@@ -105,6 +109,10 @@ - (void)dismissedModal:(UIViewController *)viewController {
105109
[_delegate dismissedModal:viewController];
106110
}
107111

112+
- (void)presentationControllerDidDismiss:(UIPresentationController *)presentationController {
113+
[_presentedModals removeObject:presentationController.presentedViewController];
114+
}
115+
108116
-(UIViewController*)topPresentedVC {
109117
UIViewController *root = UIApplication.sharedApplication.delegate.window.rootViewController;
110118
while(root.presentedViewController) {

0 commit comments

Comments
 (0)