diff options
Diffstat (limited to 'CyteKit')
-rw-r--r-- | CyteKit/WebView.h | 1 | ||||
-rw-r--r-- | CyteKit/WebView.mm | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/CyteKit/WebView.h b/CyteKit/WebView.h index c7eeb4b..c9e10c8 100644 --- a/CyteKit/WebView.h +++ b/CyteKit/WebView.h @@ -84,6 +84,7 @@ enum CYWebPolicyDecision { - (void) dispatchEvent:(NSString *)event; - (void) reloadFromOrigin; - (UIScrollView *) scrollView; +- (NSURLRequest *) request; @end diff --git a/CyteKit/WebView.mm b/CyteKit/WebView.mm index 09c9c40..1706cc0 100644 --- a/CyteKit/WebView.mm +++ b/CyteKit/WebView.mm @@ -377,6 +377,11 @@ static void $UIWebViewWebViewDelegate$webViewClose$(UIWebViewWebViewDelegate *se [frame setNeedsLayout]; } +- (NSURLRequest *) request { + WebFrame *frame([[[self _documentView] webView] mainFrame]); + return [([frame provisionalDataSource] ?: [frame dataSource]) request]; +} + @end static void $UIWebViewWebViewDelegate$_clearUIWebView(UIWebViewWebViewDelegate *self, SEL sel) { |