iOS Universal link注意事项

当用户安装APP时,系统会检查存储在服务器上的apple文件,以验证网站是否允许app代表其打开URL

  1. 首先配置好apple-app-site-association

  2. 将其放入yourdomain.well-known下

  3. 通过网址打开https://yourdomain/.well-known/apple-app-site-association 检查apple-app-site-association是否已经配置

  4. 检查Apple cdn: app-site-association.cdn-apple.com/a/v1/yourdo... 必须等apple cdn与文件一致时,才是真正的生效,apple cdn一般在24小时内更新

  5. 在项目中添加Associated Domains,配置好applinks:yourdomain

  6. 在notes 中长按相应link,如一切正常,会出现打开app的选项

  7. open app之后的处理

当你的app没有使用Scene时,可以在AppDelete.swift文件中处理

swift 复制代码
func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) {
    // Get URL components from the incoming user activity. 
    guard userActivity.activityType == NSUserActivityTypeBrowsingWeb, 
    let incomingURL = userActivity.webpageURL, 
    let components = NSURLComponents(url: incomingURL, resolvingAgainstBaseURL: true) else { 
    return false 
    } 
    // Check for specific URL components that you need. 
    guard let path = components.path, 
    let params = components.queryItems else { 
    return false 
    } 
    print("path = \(path)")
}

当你的app使用Scene时,可以在SceneDelegate.swift文件中处理

swift 复制代码
//app没有运行,系统会在启动后将Universal link传递到Scene
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
    // Get URL components from the incoming user activity. 
    guard let userActivity = connectionOptions.userActivities.first, 
        userActivity.activityType == NSUserActivityTypeBrowsingWeb, 
        let incomingURL = userActivity.webpageURL, 
        let components = NSURLComponents(url: incomingURL, resolvingAgainstBaseURL: true) else { 
        return 
        } 
        // Check for specific URL components that you need. 
        guard let path = components.path, 
        let params = components.queryItems else { 
        return 
        } 
        print("path = \(path)")
}

//当app在内存中运行或暂停时点击Universal link时,将链接传递到Scene
func scene(_ scene: UIScene, continue userActivity: NSUserActivity) {
    // Get URL components from the incoming user activity. 
    guard userActivity.activityType == NSUserActivityTypeBrowsingWeb, 
    let incomingURL = userActivity.webpageURL, 
    let components = NSURLComponents(url: incomingURL, resolvingAgainstBaseURL: true) else { 
    return false 
    } 
    // Check for specific URL components that you need. 
    guard let path = components.path, 
    let params = components.queryItems else { 
    return false 
    } 
    print("path = \(path)")
}

参考资料

1.developer.apple.com/videos/play... 2.developer.apple.com/documentati...

相关推荐
Cedric_Anik12 小时前
iOS App的启动与优化
ios
leluckys1 天前
iOS之动态库和静态库的区别
ios
Black_Rock_br1 天前
iPhone 智能进化:Siri 调用 DeepSeek 大模型
ios·语言模型·iphone
猪萌萌1 天前
使用iOS个人声音与SoVITS训练个人AI语音(10分钟快速上手)
人工智能·ios·tts·文字转语音·sovits
二流小码农1 天前
鸿蒙开发:V2版本装饰器@Once
android·ios·harmonyos
Johnny Tong2 天前
iOS 获取设备占用内存
ios·内存·host_vm
木兰不吃草2 天前
如何在 Mac 上下载安装仙剑游戏仙剑世界?可以通过IPA砸壳包安装非常简单
游戏·macos·ios·游戏程序·mac
帅次2 天前
Flutter 异步编程利器:Future 与 Stream 深度解析
android·flutter·ios·小程序·kotlin·webview·android-studio
小鹿撞出了脑震荡2 天前
Effective Objective-C 2.0 读书笔记——大中枢派发
开发语言·ios·objective-c
struggle20252 天前
Ollmao (OH-luh-毛程序包及源码) 是一款原生 SwiftUI 应用程序,它与 Ollama 集成,可在 Mac 上本地运行强大的 AI 模型
ios·swiftui·swift