- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
如果用户触摸 UITableView
并为以下代码更新 TableView
[self.myTableView beginUpdates];
[myTableView endUpdates];
然后它会产生以下崩溃报告。
2013-12-17 17:27:33.446 planobot[12300:a0b] *** Assertion failure in -[UITableView _endCellAnimationsWithContext:], /SourceCache/UIKit_Sim/UIKit-2903.23/UITableView.m:1330
2013-12-17 17:27:33.469 planobot[12300:a0b] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid update: invalid number of rows in section 0. The number of rows contained in an existing section after the update (1) must be equal to the number of rows contained in that section before the update (7), plus or minus the number of rows inserted or deleted from that section (0 inserted, 0 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out).'
*** First throw call stack:
(
0 CoreFoundation 0x0210e5e4 __exceptionPreprocess + 180
1 libobjc.A.dylib 0x01e918b6 objc_exception_throw + 44
2 CoreFoundation 0x0210e448 +[NSException raise:format:arguments:] + 136
3 Foundation 0x00fe5fee -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 116
4 UIKit 0x0024485d -[UITableView _endCellAnimationsWithContext:] + 13402
5 UIKit 0x00253caa -[UITableView endUpdatesWithContext:] + 51
6 UIKit 0x00253cd8 -[UITableView endUpdates] + 41
7 planobot 0x0004f34a -[DailyReportViewController tableView:didSelectRowAtIndexPath:] + 1658
8 UIKit 0x002557b1 -[UITableView _selectRowAtIndexPath:animated:scrollPosition:notifyDelegate:] + 1513
9 UIKit 0x00255924 -[UITableView _userSelectRowAtPendingSelectionIndexPath:] + 279
10 UIKit 0x00259908 __38-[UITableView touchesEnded:withEvent:]_block_invoke + 43
11 UIKit 0x00190183 ___afterCACommitHandler_block_invoke + 15
12 UIKit 0x0019012e _applyBlockToCFArrayCopiedToStack + 403
13 UIKit 0x0018ff5a _afterCACommitHandler + 532
14 CoreFoundation 0x020d64ce __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 30
15 CoreFoundation 0x020d641f __CFRunLoopDoObservers + 399
16 CoreFoundation 0x020b4344 __CFRunLoopRun + 1076
17 CoreFoundation 0x020b3ac3 CFRunLoopRunSpecific + 467
18 CoreFoundation 0x020b38db CFRunLoopRunInMode + 123
19 GraphicsServices 0x02fec9e2 GSEventRunModal + 192
20 GraphicsServices 0x02fec809 GSEventRun + 104
21 UIKit 0x00173d3b UIApplicationMain + 1225
22 planobot 0x000a6a4d main + 141
23 planobot 0x000022b5 start + 53
)
libc++abi.dylib: terminating with uncaught exception of type NSException
为什么应用程序会抛出 NSInternalInconsistencyException
?
最佳答案
当我的计数不正确时,我经常会看到这种情况。基于此:
reason: 'Invalid update: invalid number of rows in section 0. The number of rows contained in an existing section after the update (1) must be equal to the number of rows contained in that section before the update (7), plus or minus the number of rows inserted or deleted from that section (0 inserted, 0 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out).'
我猜你的表中有 7 个元素(由 tableView:numberOfRowsInSection:
报告)返回 7,现在返回 1。这让我相信你认为调用
[self.myTableView beginUpdates];
[myTableView endUpdates];
删除行时就足够了。
但是您需要先告诉 UITableView 哪些行被删除(或添加)。这将取决于您的具体情况,但如果您想要删除第零部分的前七行,它看起来像这样。
NSMutableArray *indexes = [[NSMutableArray alloc] init];
for (int i = 0; i <= 6; i++)
{
[indexes addObject:[NSIndexPath indexPathForItem:i inSection:0]];
}
[myTable beginUpdates];
[myTable deleteRowsAtIndexPaths:indexes withRowAnimation:NO];
[myTable endUpdates];
正如@Marco 所说,只需使用相同的指针指向您的表,否则会有点困惑,我在我的示例中就是这样做的。
或者,如果您只是想告诉您的表完全重新加载,您可以调用 reloadData instaed。
[myTable reloadData];
我认为这会比另一种手动指定要添加或删除哪些行的方法效率低,但在 7 的表中我认为它会很好。
关于ios - 由于未捕获的异常 'NSInternalInconsistencyException' 而终止应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20633782/
如果我终止应用程序,我在尝试保持我的功能运行时卡住了。 是否可以在应用程序未运行时保持核心位置(地理围栏/地理定位)和核心蓝牙运行?如果可能如何解决我的问题?我已经检查了背景模式,并实现了核心定位方法
该程序要求用户输入一个数字,然后从列表中返回详细信息。我该怎么做? do { Scanner in = new Scanner(System.in);
我正在开发一个内部分发的 iOS 应用程序(即,没有应用程序商店),我希望能够以恒定的 10 分钟间隔报告设备的位置。 无论如何,我在我的 plist 中包含了 location 作为字段 UIBac
我的 mongodb 服务器突然收到信号 15(终止)。我不知道为什么 mongodb 崩溃了。以下是日志消息。 Mon Jun 27 07:33:31.701 [signalProcessingTh
我按顺序运行了一堆malloc,并且每次都检查以确保它是成功的。像这样: typedef struct { int *aray; char *string; } mystruct; m
这个问题已经有答案了: How to stop a running pthread thread? (4 个回答) 已关闭 8 年前。 可以使用 pthread_join() 停止线程。但让我们想象一
#include #include #include struct node{ char data; int p; struct node *ptr; }; struct node *st
这个问题已经有答案了: Why should I use a semicolon after every function in javascript? (9 个回答) 已关闭 8 年前。 好吧,我问
我有一个启动多个工作线程的函数。每个工作线程都由一个对象封装,该对象的析构函数将尝试加入线程,即调用if (thrd_.joinable()) thrd_.join();。但是,每个 worker 必
我正在实现一个应用程序,当用户摇动手机时,该应用程序会监听并采取行动。 所以我实现了以下服务: public class ShakeMonitorService extends Service {
我在使用 Xcode 时遇到问题,其中弹出错误“Source Kit Service Terminated”,并且所有语法突出显示和代码完成在 Swift 中都消失了。我怎样才能解决这个问题? 这是一
我想为我的控制台应用程序安全退出,该应用程序将使用单声道在 linux 上运行,但我找不到解决方案来检测信号是否发送到它或用户是否按下了 ctrl+c。 在 Windows 上有内核函数 SetCon
关键: pthread_cancel函数发送终止信号pthread_setcancelstate函数设置终止方式pthread_testcancel函数取消线程(另一功能是:设置取消点) 1 线程取消
下面的程序在不同的选项级别下有不同的行为。当我用 -O3 编译它时,它永远不会终止。当我用 -O0 编译它时,它总是很快就会终止。 #include #include void *f(void *
我有 3 个节点的 K8S 集群,我创建了 3 个副本 pod,应用程序 app1 在所有 pod 上运行,我通过运行 service yaml 文件建立了服务,我可以看到通过运行 kubectl g
我打算使用 nginx 来代理 websocket。在执行 nginx reload/HUP 时,我知道 nginx 等待旧的工作进程停止处理所有请求。然而,在 websocket 连接中,这可能不会
在 Ubuntu 9.10 上使用 PVM 3.4.5-12(使用 apt-get 时的 PVM 包) 添加主机后程序终止。 laptop> pvm pvm> add bowtie-slave add
我编写了一个应用程序来从 iPhone 录制视频。它工作正常,但有一个大问题。当 AVCaptureSession 开始运行并且用户尝试从其库(iPod)播放音频时。此操作将使 AVCaptureSe
我将如何使用NSRunningApplication?我有与启动应用程序相反的东西: [[NSWorkspace sharedWorkspace] launchApplication:appName]
我正在使用 NSTask 执行一系列长时间运行的命令,如下所示: commandToRun = @"command 1;command2"; NSArray *arguments = [NSArray
我是一名优秀的程序员,十分优秀!