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
This may be due to stale documentation.
Looks like the TurboNavigator branch is the most active branch. The QuickStart says the
class SceneDelegate:UIResponder,UIWindowSceneDelegate{varwindow:UIWindow?privateletnavigator=TurboNavigator()func scene(_ scene:UIScene, willConnectTo session:UISceneSession, options connectionOptions:UIScene.ConnectionOptions){
guard let _ =(scene as?UIWindowScene)else{return}
window?.rootViewController = navigator.rootViewController
navigator.route(baseURL)
With this, the Session object and the webView object are encapsulated inside TurboNavigator.
If I want to set configs to webView, eg: webView.allowsLinkPreview = false, how do I do that?
The text was updated successfully, but these errors were encountered:
I'm not sure if this is the best way, but if you're using the demo code, you can insert webView.allowsLinkPreview = false into the section that creates the custom webView:
This may be due to stale documentation.
Looks like the
TurboNavigator
branch is the most active branch. The QuickStart says theWith this, the Session object and the webView object are encapsulated inside TurboNavigator.
If I want to set configs to webView, eg:
webView.allowsLinkPreview = false
, how do I do that?The text was updated successfully, but these errors were encountered: