关闭模态视图控制器时停止播放音乐

发布于 2024-10-04 09:27:52 字数 404 浏览 2 评论 0原文

亲爱的 我需要一点帮助。 我必须在我的项目中查看。 (视图 1 和视图 2)。我可以从 view1 导航到 view2,也可以从 view2 返回到 view1。 view2 有背景音乐 问题是当我从 view2 返回到 view1 时音乐仍在播放。

从 view1 导航到 view2

[selfpresentModalViewController:view2animated:YES];

返回到 view1

[selfmissModalViewControllerAnimated:YES];

ii 需要在午餐视图 2 时播放音乐并在返回视图 1 时停止

注意:有任何功能可以导航到视图 1 或视图 2 的应用程序

dear
i need a little help here.
i have to views in my project. (view1 and view2). from view1 i can navigate to view2 and i can go back form view2 to view1.
view2 have w back ground music
the problem is when the i go back from view2 to view1 the music still play.

to navigate from view1 to view2

[self presentModalViewController:view2 animated:YES];

to return to view1

[self dismissModalViewControllerAnimated:YES];

ii need to make music play when i lunch view2 and stop when return to view1

note: there is any function to teel application that we have navigate to view1 or view2

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

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

发布评论

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

评论(1

疑心病 2024-10-11 09:27:52

您可以在 view2 (我假设是视图控制器)中实现这些方法。

- (void)viewWillAppear:(BOOL)animated

并开始播放音乐。

- (void)viewWillDisappear:(BOOL)animated

并停止音乐。

You can implement these methods in view2 (that I assume is a view controller).

- (void)viewWillAppear:(BOOL)animated

And start the music.

- (void)viewWillDisappear:(BOOL)animated

And stop the music.

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