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

ios - iOS 中 NSmutableArrays 的 NSMuatableArray 的 RemoveObjectAtIndex 正在崩溃

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

我正在使用 NSMutableArray 并尝试从 NSMutableArray 中删除对象,然后它崩溃了

[[self.sectionsArray objectAtIndex:indexPath.section] removeObjectAtIndex:indexPath.row];

.h 就像

NSMutableArray *sectionsArray;
@property (nonatomic, retain) NSMutableArray *sectionsArray;



.m is like:

 @synthesize sectionsArray;

 #pragma mark - TableView Delegate

 - (void)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath *)indexPath
 {
// Perform segue to candy detail
  
NSLog(@"section: %d row: %d", indexPath.section, indexPath.row);
NSLog(@"section :%@", [[self.sectionsArray objectAtIndex:indexPath.section] objectAtIndex:indexPath.row]);
[[self.sectionsArray objectAtIndex:indexPath.section] removeObjectAtIndex:indexPath.row];
//    [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft];
  
 }

崩溃日志是这样的:

 2014-01-28 11:56:24.989 CandySearch[828:c07] section: 2 row: 0
 2014-01-28 11:56:24.991 CandySearch[828:c07] section :<Candy: 0x75a5a70>
 2014-01-28 11:56:24.992 CandySearch[828:c07] -[__NSArrayI removeObjectAtIndex:]: unrecognized selector sent to instance 0x75d8c90
 2014-01-28 11:56:24.992 CandySearch[828:c07] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSArrayI removeObjectAtIndex:]: unrecognized selector sent to instance 0x75d8c90'
 *** First throw call stack:
 (0x1c9b012 0x10d8e7e 0x1d264bd 0x1c8abbc 0x1c8a94e 0x370d 0xcc285 0xcc4ed 0xad65b3 0x1c5a376 0x1c59e06 0x1c41a82 0x1c40f44 0x1c40e1b 0x1bf57e3 0x1bf5668 0x1cffc 0x1d52 0x1cc5 0x1)
 libc++abi.dylib: terminate called throwing an exception

我可以看到该索引处的对象。但它仍然崩溃 为什么?



Best Answer-推荐答案


位于索引“indexPath.section”上的数组是一个 NSArray 对象,而不是一个 NSMutableArray 只需阅读崩溃日志: NSArrayI removeObjectAtIndex:

请检查你的sectionArray的对象

关于ios - iOS 中 NSmutableArrays 的 NSMuatableArray 的 RemoveObjectAtIndex 正在崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21398549/

回复

使用道具 举报

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

本版积分规则

关注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