Skip to content

Commit

Permalink
fix(ios): fix retain cycle caused by CDVPluginManager (#7692)
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven0351 authored Oct 2, 2024
1 parent 1b6678c commit 02bdb3d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
@property (nonatomic, strong) NSMutableDictionary * pluginsMap;
@property (nonatomic, strong) NSMutableDictionary * pluginObjects;
@property (nonatomic, strong) NSMutableDictionary * settings;
@property (nonatomic, strong) UIViewController * viewController;
@property (nonatomic, strong) WKWebView * webView;
@property (nonatomic, weak) UIViewController * viewController;
@property (nonatomic, weak) WKWebView * webView;
@property (nonatomic, strong) id <CDVCommandDelegate> commandDelegate;

- (id)initWithParser:(CDVConfigParser*)parser viewController:(UIViewController*)viewController webView:(WKWebView *)webview;
Expand Down

0 comments on commit 02bdb3d

Please sign in to comment.