“代表"的替代方案是什么?在控制器之间传递数据?

What are alternatives to quot;delegatesquot; for passing data between controllers?(“代表的替代方案是什么?在控制器之间传递数据?)
本文介绍了“代表"的替代方案是什么?在控制器之间传递数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有替代委托"的方法将数据从一个控制器传回另一个控制器?

Are there alternatives to "delegates" to pass back data from one controller to another?

实现一个委托似乎需要做很多工作,只是为了将结果从子控制器传回给父控制器.没有别的方法吗?块"是一个答案吗?如果是这样,一些示例代码会很棒.

Just seems like a lot of work implementing a delegate just to pass back the result from a child controller, back to the parent controller. Is there not another method? Are "blocks" one answer, and if so some example code would be great.

推荐答案

你可以使用很多方法:

  1. 调用超级控制器的方法,可能需要强制转换
  2. 通知
  3. 简单的Key-Value-Observing
  4. 核心数据

1 的示例.

你的 MainViewController 的接口:为要传递的数据添加一个公共方法

- (void)newDataArrivedWithString:(NSString *)aString;

MainViewController 显示 ChildController

- (void)showChildController
{
    ChildController *childController = [[ChildController alloc] init];
    childController.mainViewController = self;

    [self presentModalViewController:childController animated:YES];

    [childController release];
}

子控制器头/接口:为mainViewController添加一个属性

@class MainViewController;

@interface ChildController : UIViewController {
    MainViewController *mainViewController;   
}

@property (nonatomic, retain) MainViewController *mainViewController;

子控制器向 MainViewController 传递数据

- (void)passDataToMainViewController
{
    NSString * someDataToPass = @"foo!";
    [self.mainViewController newDataArrivedWithString:someDataToPass];
}

这篇关于“代表"的替代方案是什么?在控制器之间传递数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Get an event when UIBarButtonItem menu is displayed(显示UIBarButtonItem菜单时获取事件)