change a property in another viewcontroller

半城伤御伤魂 提交于 2020-01-16 15:36:54

问题


I've searched how to run a method from another ViewController on stackoverflow and didn't find an answer. I have a ViewController1 playing an audio using AVAudioPlayer and I want my ViewController2 to be able to change it's volume.

I've tried the basic: calling a method in ViewController2 that changes the volume in ViewController1.
This doesn't work. The method is able do output Logs but isn't able to change properties.

Thanks


回答1:


You need to pass a message from ViewController2 to ViewController1.
For that either use:
1. Notifications
2. Delegation

Here is the link for a tutorial if you are unaware of both of them.
http://devinsheaven.com/cocoa-tutorial-passing-messages-between-objects-notifications-delegates-and-target-action/



来源:https://stackoverflow.com/questions/17968376/change-a-property-in-another-viewcontroller

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!