是否可以使用 swift 中的 transferFile 将音频文件从 iPhone 传输到 Apple Watch?

Is it possible to transfer audio files from iPhone to Apple Watch using transferFile in swift?

我想将音频文件和一个 zip 文件(最大 30MB)从 iPhone 传输到 Apple Watch。

我使用了 transferFile 方法 (https://developer.apple.com/documentation/watchconnectivity/wcsession/1615667-transferfile) to send them but the counterpart (watch) did not receive anything nor did the app (ios) call its call back function (https://developer.apple.com/documentation/watchconnectivity/wcsessiondelegate/1615668-session)

综上所述,我的问题是“transferFile”方法是否允许发送音频or/and zip 文件。如果没有,有什么解决方法?

提前致谢!

据我所知,您尝试发送的文件必须可由应用程序读取,您的应用程序可能无法读取 ZIP 文件,这就是它在传输数据时失败的原因 谢谢