gpt4 book ai didi

ios - 观看 OS 2 问题以设置图像

转载 作者:搜寻专家 更新时间:2023-10-30 22:10:35 30 4
gpt4 key购买 nike

我只想向我的 WKInterfaceController 添加图像,但是...

Xcode 告诉我:

Unable to find image named "circle44" on Watch

@IBOutlet var cirlceImage: WKInterfaceImage!
override func awakeWithContext(context: AnyObject?) {
super.awakeWithContext(context)

cirlceImage.setImageNamed("circle44")
}

最佳答案

好的,我发现图像必须在您的 WatchKt 应用程序中而不是在您的扩展程序中。随着应用程序变薄的加入, watch 不再搜索 1x 图像,因为它们应该都是 2x。 As you see in works !

import WatchKit
import Foundation


class InterfaceController: WKInterfaceController {


@IBOutlet var cirlceImage: WKInterfaceImage!

override func awakeWithContext(context: AnyObject?) {
super.awakeWithContext(context)
cirlceImage.setImageNamed("circle94")


}

override func willActivate() {
super.willActivate()

}

override func didDeactivate() {
super.didDeactivate()

}
}

关于ios - 观看 OS 2 问题以设置图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32281009/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com