手表加载屏幕上的自定义品牌

时间:2015-03-17 21:54:36

标签: watchkit apple-watch

在超级苹果手表应用程序中,我注意到他们设法将文本“Uber”放在加载指示器下方。

enter image description here

他们是如何做到这一点的?

2 个答案:

答案 0 :(得分:2)

您需要在Watchkit App的Info.plist *中设置一个值。

*请注意原始问题中的屏幕截图是针对WatchOS1的 - 在WatchOS2中,标题显示在顶部的状态栏中而不是在加载指示器附近,但此答案仍然控制该文本。

1.) Open the Info.plist file for your Watchkit App.
2.) Set the title for the "Bundle display name" key

从Xcode 6.3.1开始,请参阅下图以获取帮助:

enter image description here

或者,您可以将Info.plist文件编辑为源代码并将其粘贴到其中:

<key>CFBundleDisplayName</key>
<string>My Cool Title</string>

答案 1 :(得分:1)

经过大量的仔细检查后,我可以确认目前还没有办法使用SDK添加它。我怀疑Watch在运输操作系统中显示的内容略有不同,或者他们使用的是旧版本。