Posts by Douglas • 36 points
4 posts
-
0
votes2
answers416
viewsA: Webview on Ios goes blank
For a solution on Swift, I recommend using Csafariwebkit In your file import CSafariWebKit And in the Viewcontroller you want to call Webview let vc = SafariViewController(url: url, barTintColor:…
-
1
votes1
answer1012
viewsA: Push notification no webview - Android / iOS
Java is not well embedded in an iOS App. What you can do is go in your method that gets Push Notification (if you don’t have it, just implement it in Appdelegate, because it should have). And then,…
-
0
votes2
answers213
viewsA: webView on iOS is not accessing some websites
For a solution on Swift, I recommend using Csafariwebkit In your file import CSafariWebKit And wherever you want to call Webview let vc = SafariViewController(url: url, barTintColor: nil, tintColor:…
-
1
votes1
answer30
viewsA: How to use Safariviewcontroller on all App Urls
I recommend using the Csafariwebkit In your file import CSafariWebKit Declare optional func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) This function is triggered when a…