WatchKit 如何处理图像?

How WatchKit handles images?

我只是问一个问题:将图像保存在 WatchKit 应用程序或将图像保存在 iOS App/WatchKit 之间的真正区别是什么扩展?

我的意思是,保存在WatchKit App上的图片真的保存在手表上?如果我在 WatchKit 应用程序上保存了很多图像,应用程序大小是否有任何限制

谢谢

真正的区别是什么?

真正的区别在于保存到 Watch App 中的图像将被安装到手表上。保存到 Watch Extension 中的图像将保存到 iOS 设备中。

This is a VERY important distinction because it is very slow to add a cached image using the WKInterfaceDevice APIs. Any static images for your Watch App MUST be stored in your Watch App and not your Watch Extension. Only dynamic images that are generated by the iOS App or Watch Extension should need to use the WKInterfaceDevice caching APIs.

应用大小有限制吗?

Apple 尚未公开发布任何限制。可以推测很可能存在一个限制。