我正在使用 来ShareLink共享FileDocument包含字符串的。符合FileDocument协议Transferable。
这是 FileDocument 结构:
struct TransferableDocument: FileDocument, Transferable {
static var transferRepresentation: some TransferRepresentation
{
DataRepresentation(exportedContentType: .text) { log in
log.convertToData()
}
}
// tell the system to support only text
static var readableContentTypes: [UTType] = [.text]
// by default the document is empty
var text = ""
// this initializer creates a empty document
init(initialText: String = "") {
text = initialText
}
// this initializer loads data that has …Run Code Online (Sandbox Code Playgroud) 我将我的应用程序上传到 AppStore connect(使用 Xcode 12 Beta 6)并收到一封带有此警告的邮件。该应用程序可在 TestFlight 中使用。我的应用程序使用带有 AppGroup 的 Widget,但我没有使用 Siri(未从 Capability 中选择)。我已经在 Xcode 的 Intents.intetdefinition 中剖析了“可在快捷方式中配置”以及“建议”。我已经搜索过,但没有找到适合我的解决方案。我找到了一个建议将 AppIntentVocabulary.plist 添加到项目的答案。我从未使用过该文件,也不知道如何使用它。
有没有人知道我可以做些什么来解决这个问题?