在目标c中全局访问实例变量
我是 iPhone 开发新手。我想在另一个视图中访问一个视图中声明的变量。我该如何实现它。是否可以通过使用 extern 变量,如果可以,如何声明和实现它。我可以通过以下方式实现它吗使用委托?那么如何实现它。请指导我。我正在浏览谷歌来获取和实现它的想法,我想出了委托和外部变量,但我不知道如何实现或使用这些方法(委托,外部变量)。请告诉我实现它的正确方法。谢谢。
I am new to iphone development.I want to access a variable declared in one view in another view.How can i achieve it.Whether it is possible by using extern variable, if so how to declare and implement it.Can i achieve it by using delegates?then so how to implement it.Please guide me.I am browsing google to get and idea to achieve it, i came up with delegates and extern variable, but i dont know how implement or use these methods(delegates,extern variable).Please tell me the right way to achieve it.Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在第一个视图上声明并实现一个属性,然后从第二个视图中设置它。
这要求第二个视图引用第一个视图。
例如:
FirstView.h
FirstView.m
SecondView.m
You could declare and implement a property on first view and set it from the second view.
This requires that the second view has a reference to the first view.
For example:
FirstView.h
FirstView.m
SecondView.m