观看应用自定义菜单图片不显示?

时间:2015-04-08 14:08:54

标签: ios objective-c watchkit

我只是创建了手表应用并添加了自定义菜单图片,但它没有显示。

获得此指南 - Menu Image Guideline

并以png格式创建了80x80图标。

将其命名为comment.png。

我做错了什么?有帮助吗?

编辑1-在WatchAppImages.xcassets中添加图像,现在看起来像 - enter image description here

1 个答案:

答案 0 :(得分:1)

你在WKInterfaceController中调用setContextMenuOptions吗?

- (void) setContextMenuOptions
{
     [self addMenuItemWithImageNamed:imageName title:title action:action];
}

而且,图像添加到哪里了?应该在WatchExtensionImages.assets中的WatchAppImages.xcassets中。

此外,您的png应该是视网膜显示的名称:iconImage@2x.png在您的资产中添加到下一个图像的蓝色方块中(2x,而不是1x或3x):

enter image description here

希望它有所帮助。