问题标签 [wkinterfaceimage]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ios - 刷新时表中的 WKinterfaceImage 丢失图像
我有WKInterfaceTable
一个 WatchKit 应用程序。表中的每一行都有一个图像和一个标签。awakeWithContext
在第一次加载接口控制器时,我在or中设置了表格willActivate
,一切正常。标签和图像按预期显示其内容。但是,如果我重新加载表格以响应用户选择一行,所有图像都会消失。
我正在使用setImageNamed:
设置WKInterfaceImage
WatchKit 应用程序包中的图像。我已经尝试将图像放在资产文件中并单独包含在项目中。是什么赋予了?
我设置和重置表格的代码如下所示:
ios - WatchKit:图像未显示
以下是代码:
我正在尝试从某些特定文本生成 QR 码并将其显示在手表界面中。问题是生成的 UIImagegenerateQRCodeWithString:
从未显示。但是,如果我[UIImage imageNamed:@"XXX.png"]
从 WatchKit 扩展包加载图像,它会正确显示。
我不确定发生了什么事。我错过了什么?提前致谢。
更新:作为对 msk 的回应,是的,我很确定。我试图 NSLog 图像,它给出了<UIImage: 0x7fc261d276e0>, {230, 230}
ios - 通过代码设置(边框)WKInterfaceImage 的半径
我必须WKInterfaceImage
通过 Swift 代码设置半径属性。
我需要与其他 UIImageViews 相同的格式:
我检查了参考指南,但没有找到解决方案。谢谢你的帮助!
ios - Find height and width of a WKInterfaceImage
I want to programmatically render a UIImage
and then display it on Apple Watch in a WKInterfaceImage
, which height and width I set to "Relative to Container" (so that it basically takes up the entire screen space).
How can I obtain the WKInterfaceImage
's width and and height? As far as I can see, there is no frame
-, border
- oder layer
-property I can access from my extension's code. So what is the proper way to get this information?
Weird enough I have found out that there is a setWidth and setHeight method, but I can't find according getter methods.
At the end of the day I am basically looking for the Watch Kit equivalent to this:
ios - WatchKit 如何处理图像?
我只是一个问题:将图像保存在 WatchKit App 或将它们保存在 iOS App/WatchKit Extension 之间的真正区别是什么?
我的意思是,WatchKit App 上保存的图像真的保存在 Watch 上吗?如果我在 WatchKit App 上保存了很多图像,应用程序大小是否有限制?
谢谢
ios - 没有办法将 UIImage 从 iPhone 传输到 WatchKit 应用程序中的 WKInterfaceImage,对吗?
没有办法将 UIImage 从 iPhone 传输到 WatchKit 应用程序中的 WKInterfaceImage,对吗?
有一些限制不允许这样做,对吗?
然后我尝试将其保存在设备上的文档文件夹中。但这些是每个设备上的 2 个单独的文件夹,对吗?iPhone 有一个文档文件夹。Watch设备上的那个是一个单独的。因此,当我查询文件路径时,它会在 Watch 上为我提供类似 Device/pluginKit/filename.png 的信息。
总之没有办法实现上面的标题吧?
ios - WatchKit 组:带有图像和标签,图像得到 4 个圆角中的 2 个圆角
我正在尝试在 WatchKit 中并排放置一个带有图像和标签的视图。
我创建了一个水平方向的组,并添加了左对齐的图像和右对齐的标签。
我实际上在这里遇到了两个不同的问题:
(1) 我的图像是正方形的,但是靠在组边缘的图像边缘被四舍五入。所以我有两个圆角和两个方角,看起来很糟糕。我更喜欢得到 4 个圆角——但主要是我只需要它保持一致。
(2) 我的标签文字很长,需要换行。在 Interface Builder 中,我将行设置为 2,在 IB 中它正确包装。但是当我运行它时,模拟器中的视图不会换行,而是被截断。
ios - WKInterfaceMenuItem 上的自定义图像未显示
我正在尝试为我的 WatchKit 应用程序设置菜单。根据 Watch HIG 上的文档,图像的画布尺寸应为 80 x 80。我这样做了,将我的 MenuItem 设置为自定义,然后放入我创建的图像,但没有任何显示。我究竟做错了什么?
ios - 如何更改 Apple Watch 的 WKInterfaceImage 对象的框架或大小?
如何更改 WKInterfaceImage 对象的大小?官方文档没有提供任何方法来完成这个简单的步骤。
ios - 如何通过在 Xcode 中使用 watchkit 将其分配给 Wkinterfaceimage 来直接运行动画 Gif?
这是我的疑问!
如何通过从 url / NSdata 动态获取并将其分配给 Wkinterfaceimage 来直接运行动画 gif 图像???
从过去几天开始,我正在开发 Applewatch 应用程序,它非常棒。目前我正在处理分配给 imageview 的 GIf 图像。我通过在 xcode 中静态添加一系列图像并通过分配给 Wkinterfaceimage 来运行它来成功完成。