0

我已经搜索了如何在 stackoverflow 上运行另一个方法ViewController,但没有找到答案。我有一个ViewController1正在播放的音频AVAudioPlayer,我希望我ViewController2能够改变它的音量。

我已经尝试过基本的:调用一个方法ViewController2来改变ViewController1.
这行不通。该方法能够输出日志,但不能更改属性。

谢谢

4

1 回答 1

0

ViewController2您需要从to传递消息ViewController1
对于这两种用途:
1. 通知
2. 委派

如果您不知道这两个,这里是教程的链接。
http://devinsheaven.com/cocoa-tutorial-passing-messages-between-objects-notifications-delegates-and-target-action/

于 2013-07-31T10:59:08.230 回答