Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
Flutter Inappwebview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李增强
Flutter Inappwebview
Commits
cb792115
Commit
cb792115
authored
Jun 18, 2019
by
Ben Ulmer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
done
parent
f6353b8f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
21 deletions
+15
-21
ios/Classes/InAppBrowserWebViewController.swift
ios/Classes/InAppBrowserWebViewController.swift
+15
-21
No files found.
ios/Classes/InAppBrowserWebViewController.swift
View file @
cb792115
...
...
@@ -272,27 +272,21 @@ class InAppBrowserWebViewController: UIViewController, UIScrollViewDelegate, WKU
weak
var
weakSelf
=
self
// Run later to avoid the "took a long time" log message.
DispatchQueue
.
main
.
async
(
execute
:
{()
->
Void
in
if
(
weakSelf
?
.
responds
(
to
:
#selector(
getter: self.presentingViewController
)
))
!
{
weakSelf
?
.
presentingViewController
?
.
dismiss
(
animated
:
true
,
completion
:
{()
->
Void
in
self
.
tmpWindow
?
.
windowLevel
=
0.0
UIApplication
.
shared
.
delegate
?
.
window
??
.
makeKeyAndVisible
()
if
(
self
.
navigationDelegate
!=
nil
)
{
self
.
navigationDelegate
?
.
browserExit
(
uuid
:
self
.
uuid
)
}
})
}
else
{
weakSelf
?
.
parent
?
.
dismiss
(
animated
:
true
,
completion
:
{()
->
Void
in
self
.
tmpWindow
?
.
windowLevel
=
0.0
UIApplication
.
shared
.
delegate
?
.
window
??
.
makeKeyAndVisible
()
if
(
self
.
navigationDelegate
!=
nil
)
{
self
.
navigationDelegate
?
.
browserExit
(
uuid
:
self
.
uuid
)
}
})
}
})
if
(
weakSelf
?
.
responds
(
to
:
#selector(
getter: self.presentingViewController
)
))
!
{
weakSelf
?
.
presentingViewController
?
.
dismiss
(
animated
:
true
,
completion
:
{()
->
Void
in
self
.
tmpWindow
?
.
windowLevel
=
0.0
UIApplication
.
shared
.
delegate
?
.
window
??
.
makeKeyAndVisible
()
})
}
else
{
weakSelf
?
.
parent
?
.
dismiss
(
animated
:
true
,
completion
:
{()
->
Void
in
self
.
tmpWindow
?
.
windowLevel
=
0.0
UIApplication
.
shared
.
delegate
?
.
window
??
.
makeKeyAndVisible
()
})
}
if
(
self
.
navigationDelegate
!=
nil
)
{
self
.
navigationDelegate
?
.
browserExit
(
uuid
:
self
.
uuid
)
}
}
@objc
func
goBack
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment