我在手机上生成图像并将其发送到苹果手表。
func session(_ session: WCSession, didReceive file: WCSessionFile) {
let img = UIImage(contentsOfFile: file.fileURL.path)
self.image.setImage(img)
}
这张图片我很少需要再生。我怎样才能将它缓存在苹果手表上? NSFileManager
可以观看吗?
答案 0 :(得分:0)
是的,NSFileManager可用。在大多数情况下,WatchKit应用程序就像iOS一样。