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
f1cb348b
Commit
f1cb348b
authored
Oct 24, 2019
by
Lorenzo Pichilli
Committed by
GitHub
Oct 24, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #119 from benfingo/master
Remove async call in close Swift
parents
07f63a5f
cb792115
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 @
f1cb348b
...
...
@@ -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