在 iPhone 控制器之间发送变量
我目前正在从 Android 切换到 iPhone SDK。我有一个 TableView,用户可以在其中选择一个项目。我在控制器之间传递数据时遇到问题。是否有相当于 Android 的 startActivityForResult
或将额外的内容放入 Intents 中?就像这样...
Intent i = new Intent(this, Foo.class);
i.putExtra("Foo", foo);
I am currently in the process of switching from Android to the iPhone SDK. I have a TableView where the user selects an item. I am having trouble passing data between controllers. Is there an equivalent to the Android's startActivityForResult
or putting extra's into Intents? Like so ...
Intent i = new Intent(this, Foo.class);
i.putExtra("Foo", foo);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其放入 ParentViewController 中的 .h 文件中,
在 ParentViewController 中创建以下函数,
现在在 Post 视图控制器中执行如下操作:
现在,在 secondaryViewController 的 viewWillAppear 方法中写入此内容。
请检查我手写的拼写错误。希望这有帮助。
如果您不使用 navigationContoller 那么您可以执行类似的操作。
Take this in .h file in ParentViewController
Make below function in ParentViewController
Now In Post view controller do like this:
Now, In secondViewController viewWillAppear Method write this.
Please check spelling mistakes as I hand written this. Hope this help.
If you are not using navigationContoller then you can do something like this.