gpt4 book ai didi

iphone - 如何解决发送到实例的无法识别的选择器?

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

我有一个 uitableview 'A',其中有单元格,单击其中一个单元格时,它需要推送另一个 TableView 'B'。现在,当单击“B”中的单元格时,它需要打开一个简单的 View 。

我已经设法在两个不同的 View 中显示这两个表。但是当在菜单 B 中单击一个单元格时,它会挂起并显示以下消息

> 无法识别的选择器发送到 > 实例

有人可以告诉我如何解决这个问题吗?谢谢

请在下面找到我的代码

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

NSInteger row = [indexPath row];
NSLog(@"entering the if loop libdecripviewcontoller");
if(self.libraryDescripViewController == nil){
NSLog(@"its creating new instance of libdecripviewcontoller");
LibraryDescripViewController *aLib = [[LibraryDescripViewController alloc] initWithNibName:@"LibraryDescripView" bundle:nil];
self.libraryDescripViewController = aLib;
[aLib release];
}
libraryDescripViewController.title = [NSString stringWithFormat:@"%@",[libraryMenu objectAtIndex:row]];

ULS1AppDelegate *delegate = [[UIApplication sharedApplication] delegate ];
[delegate.searchLibNavController pushViewController:libraryDescripViewController animated:YES];
}

请找到下面的输出

2010-06-27 20:13:15.521 ULS1[1020:207] entering the if loop libdecripviewcontoller 2010-06-27 20:13:15.533 ULS1[1020:207] its creating new instance of libdecripviewcontoller 2010-06-27 20:13:15.541 ULS1[1020:207] * -[LibraryMenuTabViewController setLibraryDescripViewController:]: unrecognized selector sent to instance 0x3c2ec70 2010-06-27 20:13:15.554 ULS1[1020:207] * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[LibraryMenuTabViewController setLibraryDescripViewController:]: unrecognized selector sent to instance 0x3c2ec70' 2010-06-27 20:13:15.558 ULS1[1020:207] Stack: ( 29303899, 2512004361, 29685819, 29255286, 29107906, 14755, 3050054, 3033220, 287146, 29088448, 29084744, 37393941, 37394138, 2777007, 11184, 11038 )

最佳答案

您可以通过打开调试器窗口、单击“显示断点”并设置以下两个断点来获取有关错误发生位置的更多信息:

[NSException 引发]
objc_异常_抛出

现在,当您的应用程序即将崩溃时,调试器通常会准确地显示哪一行代码导致了问题。

因此,最好在您正在开发的每个应用程序上设置这些断点。

关于iphone - 如何解决发送到实例的无法识别的选择器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3129378/

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