Skip to content

Commit eac2da2

Browse files
committed
Fix interface
1 parent 643c059 commit eac2da2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Pod/Classes/M2DWebViewController/M2DWebViewController.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
@interface M2DWebViewController : UIViewController <WKUIDelegate, WKNavigationDelegate>
4343

44-
@property (nonatomic, readonly) id _Nullable webView;
44+
@property (nonatomic, readonly) WKWebView * _Nullable webView;
4545
@property (nonatomic, assign) BOOL toolbarHidden;
4646
@property (nonatomic, assign) BOOL smoothScroll;
4747
@property (nonatomic, weak) id<M2DWebViewControllerDelegate> _Nullable delegate;

Pod/Classes/M2DWebViewController/M2DWebViewController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ - (void)dealloc
133133
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
134134
}
135135

136-
- (id)webView
136+
- (WKWebView * _Nullable)webView
137137
{
138138
return webView_;
139139
}

0 commit comments

Comments
 (0)