From 630d53739a050f2d1291a250816f84ba283c9d80 Mon Sep 17 00:00:00 2001 From: Vasil Date: Thu, 10 Sep 2020 10:14:44 +0200 Subject: [PATCH] Example of closing webview on navigation --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ea4a242..6ce5a39 100644 --- a/README.md +++ b/README.md @@ -136,6 +136,7 @@ The implementation of the example controller looks like follows: - (BOOL)notifyNavigation:(NSURL *)url { if([[url absoluteString] isEqualToString: @"https://example.com/"]){ //Put your additional actions here.. + //[self.engine close]; return YES; } return NO;