• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 展开 Storyboard(退出)segue 是否取代了父场景中对子代理的需求?

[复制链接]
菜鸟教程小白 发表于 2022-12-12 23:42:59 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

在 ios6 中展开 Storyboard segue 是否取代了让源场景实现委托(delegate)以将数据从子场景传递回 ios5 中的父场景的需要?

我通常的做法是:

父 Controller header : 调用子场景的代理

@interface ParentViewController : UIViewController <ChildViewControllerDelegate>
//ok not much to show here, mainly the delegate
//properties, methods etc
@end

父 Controller 主体(主体): 准备segue,设置委托(delegate),从子场景创建返回方法

-(void) prepareForSegueUIStoryboardSegue *)segue senderid)sender
{

   if ([[segue identifier] isEqualToString"toChildScene"])
   {
       UINavigationController *childViewController = segue.destinationViewController;
       childViewController.delegate = self;
   }
}

#pragma mark - Delegate Segue Methods

-(void) childViewControllerDidSave: (ChildViewController *) controller NotesNSString *)sNotes
{
   someTextLabel.Text = sNotes
   [self dismissModalViewControllerAnimated:YES];    
}

子 Controller 标题: 创建委托(delegate),引用父场景方法

@class ChildViewController;

@protocol ChildViewControllerDelegate <NSObject>
-(void) childViewControllerDidSave: (ChildViewController *) controller NotesNSString *)sNotes
@end

@interface ChildViewController : UIViewController 
@property (weak, nonatomic) id <ChildViewControllerDelegate> delegate;
//properties, methods, etc
@end

子 Controller 主体(主体): 调用父场景方法

- (IBAction)someActionid)sender
{
   [self.delegate childViewControllerDidSave:self sNotes:someTextField.text];
}

现在是百万美元的问题: 现在这个过程在 iOS 6 中更简单了吗?我可以使用展开转场/退出转场来减少很多工作吗?任何示例将不胜感激。



Best Answer-推荐答案


是的。

展开转场是一种抽象的委托(delegate)形式。在 iOS 6 中,当关闭 View Controller 时,使用展开而不是委托(delegate)来向后传递数据更简单。

在父 View Controller 中,创建一个返回 IBAction 并将 UIStoryboardSegue 作为参数的展开方法:

- (IBAction)dismissToParentViewControllerUIStoryboardSegue *)segue {
    ChildViewController *childVC = segue.sourceViewController;
    self.someTextLabel.Text = childVC.someTextField.text;
}

然后,在 subview Controller 中,按住 Control 从您的关闭按钮拖动到绿色退出图标以连接展开转场:

enter image description here

关于ios - 展开 Storyboard(退出)segue 是否取代了父场景中对子代理的需求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13368480/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap