时钟应用程序“无闹钟”背景消息

发布于 2024-11-06 21:12:41 字数 146 浏览 2 评论 0原文

在 iPhone 时钟应用程序的“闹钟”选项卡上,如果没有闹钟或最后一个闹钟被删除,背景视图上会显示一条消息“无闹钟”。

如何实施?

我正在使用 TableViewController 来实现数据列表,并希望在删除最后一行时显示类似的“无数据”。

In iPhone Clock App, on Alarm tab, if there are no alarms or if the last alarm is deleted, a message is displayed on the background view "No Alarms".

How can that be implemented?

I am using a TableViewController to implement a list of data and want to show a similar "No Data" when the last row is deleted.

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

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

发布评论

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

评论(1

送舟行 2024-11-13 21:12:41

记住已设置的警报,当没有任何设置时,您只需使用 viewWillAppear: 进行您想要的任何设置。

您必须以某种方式在运行时之间保留内存,但这超出了您的问题的范围。

至于它的后半部分,您可以在表格上创建一个视图(使用 viewWillAppear:) 来显示消息,或者只是创建一个“虚拟”单元格来告诉用户,具体取决于所需的效果。

Keep memory of what alarms have been set, and when there aren't any set you just use viewWillAppear: to do the setup for whatever you want.

You'll have to somehow persist the memory between run-times, but that's outside the scope of your question.

As for the second half of it, you can either create a view over the table (using viewWillAppear:) to display the message, or just create a 'dummy' cell to tell the user that, depending on the desired effect.

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