iOS:跨控制器发送消息
我在菜单视图控制器上有一个菜单单元,在地图视图控制器上有一个按钮。
当我单击mapviewcontroller 中的按钮时,我想将菜单单元内容设置为空。
我该怎么做?
I have a menucell on a menuviewcontroller and a button in a mapviewcontroller.
When I click on the button in mapviewcontroller, I want to set the menucell contents to null.
How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
阅读
NSNotificationCenter
。当在 MapViewController 中单击按钮时,您需要向 MenuViewController 发布通知。并且不要忘记向 MenuViewController 添加一个通知观察器来监听通知。Read up on
NSNotificationCenter
. When the button is clicked in MapViewController you'll want to post a notification to MenuViewController. And don't forget to add a notification observer to MenuViewController to listen to the notification.