Get the same zoomlevel in OpenURL(http) as in Safari? (OpenURL view not zoomable)
By : user3237824
Date : March 29 2020, 07:55 AM
should help you out No solution has been found, and I must conclude that openURL() has different behavior from opening the url in Safari in IOS, ie. missing feature or bug.
|
application:openURL:options: not called after opening universal link
By : Sandeep Sunny
Date : March 29 2020, 07:55 AM
around this issue Clay from Branch here. The application:openURL:sourceApplications:annotation function (now deprecate to application(_:open:options:)) is actually only called in response to the old Apple Linking system of standard URI schemes. code :
// Respond to URI scheme links
func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool {
// pass the url to the handle deep link call
Branch.getInstance().application(app, open: url, options: options)
// do other deep link routing for the Facebook SDK, Pinterest SDK, etc
return true
}
// Respond to Universal Links
func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([Any]?) -> Void) -> Bool {
// pass the url to the handle deep link call
Branch.getInstance().continue(userActivity)
return true
}
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
let branch: Branch = Branch.getInstance()
branch?.initSession(launchOptions: launchOptions, deepLinkHandler: { params, error in
if error == nil {
// params are the deep linked params associated with the link that the user clicked -> was re-directed to this app
print("params: %@", params.description)
}
})
return true
}
|
Open universal links (deep links) with XCUITest
By : ABC
Date : March 29 2020, 07:55 AM
this one helps. I would like to create several tests for native iOS application. To be more precise, I want to test deep links. But I am not sure how to trigger deep link with XCUITest and I don't really see how launch() and launcArguments ( https://developer.apple.com/documentation/xctest/xcuiapplication) can help me. Did anybody have a chance to open deep link with XCUITest? , Set safari as app like this
|
Universal links on iOS vs. deep links (URL schemes)
By : shibasish moharana
Date : March 29 2020, 07:55 AM
I hope this helps you . Universal links is the iOS's capability of sending web url request to a given app, instead of opening them in the browser. URL-schemes is an apps ability to open in a given state, described by the url, and handled in code by the developer.
|
How to make iOS universal links work inside an iframe
By : rbplunge
Date : March 29 2020, 07:55 AM
hope this fix your issue First, we have an app and our domain supports Universal links on iOS9 and iOS10. On the landing page there is an element with 'href' attribute set to our domain. Clicking on it launches our native app or opens UL in the browser. This is working. , Just leave from iframe by
|