iPhone XCode编程:在选项卡栏应用程序中更改选项卡时执行代码

发布于 2024-08-26 10:03:05 字数 87 浏览 5 评论 0原文

我正在为学校开发一个简单的标签栏应用程序。 它有 3 个选项卡。 其中之一在流媒体中播放音乐,我想在用户更改选项卡时停止音乐播放。这可能吗?以及如何?先感谢您!

I'm developing a simple tab bar application for school.
It has 3 tabs.
One of them plays music in streaming and I would like to stop the music playing when the user changes the tab. Is this possible? and How? Thank you in advance!

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

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

发布评论

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

评论(2

離人涙 2024-09-02 10:03:05

实现 UITabViewController 委托方法:

– tabBarController:didSelectViewController:

您应该能够做您想做的事情。还有

– tabBarController:shouldSelectViewController:

如果您想在选项卡更改之前了解情况。

Implement the UITabViewController delegate method:

– tabBarController:didSelectViewController:

And you should be able to do what you want. There's also

– tabBarController:shouldSelectViewController:

if you want to know before the tab changes.

天涯沦落人 2024-09-02 10:03:05

正如卡尔所说,这是可能的。但是,如果我要开发这样的应用程序(实际上,我就是这样),我会使用我的 UIViewControllerviewWillDisappear 方法(而且我就是这样)。这样您就可以在实现之间保持逻辑分离。

As Carl says, this is possible. However, if I were to develop such application (and actually, I am), I would use the viewWillDisappear method of my UIViewController (and I am). That way you keep the logic separated between your implementations.

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