Skip to content

Commit e04843b

Browse files
authored
Remove UIWebViewDelegate references (#3799)
1 parent 3d77a65 commit e04843b

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

Firebase/DynamicLinks/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# v4.0.5
2+
- [fixed] Removed references to UIWebViewDelegate to comply with App Store Submission warning. (#3722)
3+
14
# v4.0.4
25
- [fixed] Removed references to UIWebView to comply with App Store Submission warning. (#3722)
36

Firebase/DynamicLinks/FIRDLJavaScriptExecutor.m

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,6 @@
1818

1919
#import "DynamicLinks/FIRDLJavaScriptExecutor.h"
2020

21-
// define below needed because nullability of UIWebViewDelegate method param was changed between
22-
// iOS SDK versions
23-
#if (defined(__IPHONE_10_0) && (__IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0))
24-
#define FIRDL_NULLABLE_IOS9_NONNULLABLE_IOS10 nonnull
25-
#else
26-
#define FIRDL_NULLABLE_IOS9_NONNULLABLE_IOS10 nullable
27-
#endif
28-
2921
NS_ASSUME_NONNULL_BEGIN
3022

3123
static NSString *const kJSMethodName = @"generateFingerprint";
@@ -50,7 +42,7 @@
5042
return methodString;
5143
}
5244

53-
@interface FIRDLJavaScriptExecutor () <UIWebViewDelegate, WKNavigationDelegate>
45+
@interface FIRDLJavaScriptExecutor () <WKNavigationDelegate>
5446
@end
5547

5648
@implementation FIRDLJavaScriptExecutor {

0 commit comments

Comments
 (0)