提问人:user14823172 提问时间:11/7/2023 最后编辑:user14823172 更新时间:11/7/2023 访问量:33
无法在 xcode 项目中添加 .watchface 文件
Not able to add .watchface file in xcode project
问:
func setUpPhoneCommunication() {
if WCSession.isSupported() { // check if the device support to handle an Apple Watch
let session = WCSession.default
session.delegate = self
session.activate()
guard let url = Bundle.main.url(forResource: "Simple (1)", withExtension: "watchface") else {
fatalError("*** Unable to find My.watchface in the app bundle ***")
}
if #available(iOS 14.0, *) {
let library = CLKWatchFaceLibrary()
library.addWatchFace(at: url) { (error) in
// Check for errors here.
if let error = error {
fatalError("*** An error occurred: \(error.localizedDescription) ***")
}
}
}
}
}
我已经创建了文件并将其添加到我的 Xcode 项目中。当它启动时,我正在将上述代码用于我的应用程序的文件,但我收到一个错误,我在屏幕截图中添加了该错误。.watchface
答: 暂无答案
评论