将数据从 VC 传递到 VC segue

Posted

技术标签:

【中文标题】将数据从 VC 传递到 VC segue【英文标题】:Passing data from VC to VC segue 【发布时间】:2014-05-21 00:50:14 【问题描述】:

我正在使用此代码将对象传递给另一个视图控制器。

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
    if([segue.identifier isEqualToString:@"Detail"])
        UINavigationController *navController = (UINavigationController *)segue.destinationViewController;
        DetailedViewController *controller = (DetailedViewController *)navController.topViewController;
        controller.clipping = [pasteBoardArray objectAtIndex:_row];
    

就行了:

DetailedViewController *controller = (DetailedViewController *)navController.topViewController;

我得到一个冗长的例外

2014-05-20 18:46:39.752 SWTableViewCell[8370:60b] -[DetailedViewController topViewController]: unrecognized selector sent to instance 0x10c7169e0
2014-05-20 18:46:39.756 SWTableViewCell[8370:60b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[DetailedViewController topViewController]: unrecognized selector sent to instance 0x10c7169e0'
*** First throw call stack:
(
    0   CoreFoundation                      0x0000000102667495 __exceptionPreprocess + 165
    1   libobjc.A.dylib                     0x00000001016c699e objc_exception_throw + 43
    2   CoreFoundation                      0x00000001026f865d -[NSObject(NSObject) doesNotRecognizeSelector:] + 205
    3   CoreFoundation                      0x0000000102658d8d ___forwarding___ + 973
    4   CoreFoundation                      0x0000000102658938 _CF_forwarding_prep_0 + 120
    5   SWTableViewCell                     0x000000010000d91c -[ViewController prepareForSegue:sender:] + 204
    6   UIKit                               0x00000001004f4c73 -[UIStoryboardSegueTemplate _perform:] + 134
    7   SWTableViewCell                     0x000000010000c4be -[ViewController tableView:didSelectRowAtIndexPath:] + 350
    8   SWTableViewCell                     0x00000001000089ae -[SWTableViewCell selectCell] + 798
    9   SWTableViewCell                     0x000000010000864b -[SWTableViewCell scrollViewTapped:] + 171
    10  UIKit                               0x0000000100362fc2 _UIGestureRecognizerSendActions + 188
    11  UIKit                               0x0000000100361f28 -[UIGestureRecognizer _updateGestureWithEvent:buttonEvent:] + 357
    12  UIKit                               0x00000001003662d9 ___UIGestureRecognizerUpdate_block_invoke + 53
    13  UIKit                               0x0000000100366261 _UIGestureRecognizerRemoveObjectsFromArrayAndApplyBlocks + 257
    14  UIKit                               0x000000010035e337 _UIGestureRecognizerUpdate + 93
    15  UIKit                               0x0000000100072a15 -[UIWindow _sendGesturesForEvent:] + 928
    16  UIKit                               0x00000001000736d4 -[UIWindow sendEvent:] + 909
    17  UIKit                               0x000000010004b29a -[UIApplication sendEvent:] + 211
    18  UIKit                               0x0000000100038aed _UIApplicationHandleEventQueue + 9579
    19  CoreFoundation                      0x00000001025f6d21 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    20  CoreFoundation                      0x00000001025f65f2 __CFRunLoopDoSources0 + 242
    21  CoreFoundation                      0x000000010261246f __CFRunLoopRun + 767
    22  CoreFoundation                      0x0000000102611d83 CFRunLoopRunSpecific + 467
    23  GraphicsServices                    0x00000001025c6f04 GSEventRunModal + 161
    24  UIKit                               0x000000010003ae33 UIApplicationMain + 1010
    25  SWTableViewCell                     0x0000000100002763 main + 115
    26  libdyld.dylib                       0x000000010607f5fd start + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException

作为旁注,我在UINavigationBarController 中执行所有这些操作。我需要做的就是将objectAtIndex:_row 传递给DetailedViewController 中的_clipping 属性。

【问题讨论】:

你的第一个 viewController 和DetailedViewController 之间有导航控制器吗? 这就是我设置故事板的方式:i.imgur.com/fQPQUGD.png 你能告诉我们你的segue的细节吗?它是从您的第一个 viewController 开始还是从您的单元格开始? @user1966109 它是从我的单元格开始的。 【参考方案1】:

如果两个视图控制器之间没有导航控制器,请使用以下代码:

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
    if([segue.identifier isEqualToString:@"Detail"])
        DetailedViewController *controller = (DetailedViewController *)[segue destinationViewController];
        controller.clipping = [pasteBoardArray objectAtIndex:_row];
        /* ... */
    

仅当两个视图控制器之间存在一个导航控制器时才使用以下代码:

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
    if([segue.identifier isEqualToString:@"Detail"])
        UINavigationController *navController = (UINavigationController *)segue.destinationViewController;
        DetailedViewController *controller = (DetailedViewController *)navController.topViewController;
        controller.clipping = [pasteBoardArray objectAtIndex:_row];
        /* ... */
    

【讨论】:

你贴的代码和我贴的一样,还是会导致异常。【参考方案2】:

您发布的错误消息表明您的 segue 的目标视图控制器不是您认为的导航控制器。您应该记录目标视图控制器的类以查看它是什么。

【讨论】:

以上是关于将数据从 VC 传递到 VC segue的主要内容,如果未能解决你的问题,请参考以下文章

如何在没有 segue 的情况下在 Swift 3 中将数据从 VC 传递到另一个?

如何在没有 segue 和 storyboard 编程的情况下传递数据?

Objective C - 将数据从第二个 VC 与 tableview 传递到第一个 VC

Segue 为 segue 做准备的特定值

Swift - 将字符串从 VC1 传递到 VC2 - 崩溃

尝试使用 segue 将数据从一个视图控制器传递到另一个视图控制器