Apple Watch:删除界面控制器的状态栏
apple Watch: remove status bar for Interface Controller
是否可以删除特定界面控制器的状态栏或以任何方式自定义界面控制器标题文本?
从 Apple Watch 编程指南开始,您可以通过设置应用程序的键颜色来自定义界面控制器标题文本颜色。
Every WatchKit app has an associated key color, which is applied to the >following UI elements:
-The title string in the status bar
-The app name in short look notifications
An app’s key color is stored in the Global Tint property of the app’s storyboard. To access this property, select your storyboard and display the File inspector. Select one of several preexisting colors from the popup menu or use the color picker to specify a custom color.
这就是我们今天所拥有的。
关于是否可以隐藏状态栏...
您将获得更接近的结果是使用模态界面。
在这种情况下,时钟将不可见,但状态栏将保留在那里并显示界面标题。
是否可以删除特定界面控制器的状态栏或以任何方式自定义界面控制器标题文本?
从 Apple Watch 编程指南开始,您可以通过设置应用程序的键颜色来自定义界面控制器标题文本颜色。
Every WatchKit app has an associated key color, which is applied to the >following UI elements:
-The title string in the status bar
-The app name in short look notifications
An app’s key color is stored in the Global Tint property of the app’s storyboard. To access this property, select your storyboard and display the File inspector. Select one of several preexisting colors from the popup menu or use the color picker to specify a custom color.
这就是我们今天所拥有的。
关于是否可以隐藏状态栏... 您将获得更接近的结果是使用模态界面。 在这种情况下,时钟将不可见,但状态栏将保留在那里并显示界面标题。