> For the complete documentation index, see [llms.txt](https://help.impact.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.impact.com/partner/zh/ni-xiang-liao-jie-shen-me/platform-features/tracking/tracking-links/create-and-manage-links/fix-ios-14-mobile-tracking-links.md).

# 修复 iOS 14 移动跟踪链接

如果你的移动应用用户已将其移动 Apple 设备更新到 iOS 14，他们在打开跟踪链接时可能会遇到问题。当有人在你的移动应用中选择某个资产时，可能会看到此错误消息：

{% hint style="info" %}
**注意：** 您需要安装一个网页浏览器才能使用此功能。
{% endhint %}

当以下情况时，会出现此问题：

* 他们在 iOS 中将 Google Chrome 设为默认网页浏览器。
* OpenUrl API 是从你的 .framework 库中调用的。

#### 临时解决方案：修改 info.plist

你需要修改 `info.plist` 你移动应用中的文件，并追加 `https` 作为字符串到 [LSApplicationQueriesSchemes](https://developer.apple.com/documentation/uikit/uiapplication/1622952-canopenurl) 键。

修改你的 `info.plist` 文件，使其如下方代码片段所示：

```programlisting
<key> 
     LSApplicationQueriesSchemes
</key> 
<array> 
     <string>https</string> 
<array>
```

这个问题很可能会在未来某个版本的 iOS 中得到修复，但 impact.com 建议你针对上述场景测试你的链接，并对你的移动应用进行建议的更新。


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.impact.com/partner/zh/ni-xiang-liao-jie-shen-me/platform-features/tracking/tracking-links/create-and-manage-links/fix-ios-14-mobile-tracking-links.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
