iOS 有一个“细节”:酒吧随时可用

发布于 2024-10-15 16:39:13 字数 117 浏览 3 评论 0原文

我想随时在我的应用程序顶部查看有关工具栏大小的小视图。该视图仅可用于显示一些文本详细信息。我正在考虑将根视图控制器设置为导航控制器并将提示设置为我想要显示的内容,但这似乎有点hacky。有人对如何做到这一点有其他想法吗?

I would like to have a small view about the size of a toolbar available at the top of my app at anytime. This view would be available only for displaying some textual details. I was thinking of setting the root view controller to be a navigation controller and setting the prompt to be what I want to display, but this seems kind of hacky. Does anyone have any other ideas on how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

や莫失莫忘 2024-10-22 16:39:13

我的方法是将 UIView 添加到应用程序委托的 UIWindow 中。例如,您可以转到application:didFinishLaunchingWithOptions:[self.window addSubview:overlay];,其中overlay是以编程方式创建的UIView或在IB中。

The way I do it is to add a UIView to the UIWindow of the application delegate. For example, you can go to application:didFinishLaunchingWithOptions: and [self.window addSubview:overlay]; where overlay is a UIView created programmatically or in IB.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文