reason: '-[UIViewControlle-6ren">
gpt4 book ai didi

ios - "Terminating app due to uncaught exception"推送 View Controller 时崩溃

转载 作者:行者123 更新时间:2023-12-03 04:40:59 24 4
gpt4 key购买 nike

Terminating app due to uncaught exception 'NSInvalidArgumentException', > reason: '-[UIViewController setDicSelectListItem:]: unrecognized selector sent to instance 0x10981be30'

我尝试了注释参数传递。还尝试提供主要 Storyboard。

下面是应用程序崩溃的代码

   BilingInfoVC *vc = [self.storyboard   instantiateViewControllerWithIdentifier:@"BilingInfoVC"];
vc.dicSelectListItem=_dicSelectListItem;
vc.serviceType=_serviceType;
vc.arrSelect_Addons = [arrTemp mutableCopy];
[self.navigationController pushViewController:vc animated:YES];

我想通过实例化 View Controller 传递参数。

最佳答案

检查一下:

vc 真的属于“BilingInfoVC”类吗?如果您没有在 IB 中正确分配它,那么它是一个标准 View Controller 。

您可以通过

检查
NSLog(@"Class: %@", [vc className]);

作为 vc 实例化后的第二行。

您是否正确设置了标识符?大写字母可以发挥作用!

关于ios - "Terminating app due to uncaught exception"推送 View Controller 时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57542413/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com