You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
iOS simulator as well as the real device experience issues when using this plugin
Here are the errors:
platforms/ios/Pods/JSQWebViewController/Source/WebViewController.swift:171:14: error: 'bringSubview(toFront:)' has been renamed to 'bringSubviewToFront(_:)'
I was able to get this error fixed by changing
view.bringSubview(toFront: progressBar)
to
view.bringSubviewToFront(_: progressBar)
But then I keep getting more errors with RealmSwift
invalid redeclaration of 'replacesubrange(_:with:)' realmswift
The text was updated successfully, but these errors were encountered:
iOS simulator as well as the real device experience issues when using this plugin
Here are the errors:
platforms/ios/Pods/JSQWebViewController/Source/WebViewController.swift:171:14: error: 'bringSubview(toFront:)' has been renamed to 'bringSubviewToFront(_:)'
I was able to get this error fixed by changing
view.bringSubview(toFront: progressBar)
to
view.bringSubviewToFront(_: progressBar)
But then I keep getting more errors with RealmSwift
invalid redeclaration of 'replacesubrange(_:with:)' realmswift
The text was updated successfully, but these errors were encountered: