如何在实用程序应用程序模板中的两个xib之间转移价值?
在Utility Application Template中,如何将FlipsideViewController.m的UISwitch状态转移到MainViewController.m?
这是 MainViewController.m 的按钮方法
- (IBAction)doSomething:(id)sender{
<sound method>
<button action>
}
根据 FlipsideViewController.m 的 UISwitch 的选择,判断是否使用“声音方法”。 你能帮我解决这个问题吗?
In Utility Application Template, how to transfer the state of UISwitch of FlipsideViewController.m to MainViewController.m ?
This is the method of button of MainViewController.m
- (IBAction)doSomething:(id)sender{
<sound method>
<button action>
}
According the selected of UISwitch of FlipsideViewController.m , judge use 'sound method' or not.
could you help me overcome this issue please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在主视图中创建一个 bool 作为属性,当您的开关更改其状态时,然后在其 IBAction 中为主视图属性分配适当的值。例如,
在主视图中 .h -
在主视图中 .m
在翻转视图中 .h
在翻转视图中。米
Make a bool as property in your main view and when your switch changes its state then in its IBAction assign proper value to the main view property. for example
in main view .h -
in main view .m
in flip view .h
in flip view . m