2013-12-17 3 views
4

사용자가 UITableView을 터치 단지 다음 다음과 같은 충돌 보고서를 생성 코드를인해 캐치되지 않는 예외에 'NSInternalInconsistencyException'

[self.myTableView beginUpdates]; 
[myTableView endUpdates]; 

를 다음의 TableView를 업데이트합니다.

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 인 이유는 무엇입니까? 대신이의

+0

beginUpdates와 endUpdates 메소드 블록 사이에서 업데이트 할 내용은 무엇입니까? 왜이 두 가지 방법을 호출해야합니까? – Suryakant

+1

다른 테이블 뷰 참조에 대해 궁금합니다. 'NSLog (@ "Property % @, Variable % @", self.myTableView, myTableView)에서 무엇을 보았습니까? –

+3

어떻게 든 마지막으로 다시로드 한 이후로 귀하의 tabelview 데이터 소스가 변경되었습니다. 마지막으로 다시로드 한 경우 7 개의 데이터 조각이 있었지만 이제는 데이터 소스 배열에 하나의 데이터 요소 만 있습니다. 테이블 뷰를 업데이트하지 않고 데이터 소스를 수정하지 않았는지 확인하십시오. – Putz1103

답변

1

:

[self.myTableView beginUpdates]; 
[myTableView endUpdates]; 

이 시도 :

[self.myTableView beginUpdates]; 
[self.myTableView endUpdates]; 

나는 당신의 myTableView 재산에서 호출 점점되지 endUpdates을 생각한다.

  1. 언밸런스 beginUpdates/endUpdates 통화 및 내 계산이 정확하지 않을 때
  2. NSInternalInconsistencyException
1

나는 종종를 참조하십시오 beginUpdates는이 리드, 그러나입니다. 이를 바탕으로 : 나는 날 리드 1. 반환 이제 7을 반환되었다 (tableView:numberOfRowsInSection:에 의해보고) 테이블이 7 개 요소를 가지고 추측하고있어

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).' 

당신이

[self.myTableView beginUpdates]; 
[myTableView endUpdates]; 
를 호출 생각 보라합니다

행을 제거 할 때 충분합니다.

하지만 UITableView에서 어떤 행이 먼저 제거 (추가)되는지 알려줄 필요가 있습니다. 이것은 정확한 상황에 따라 다르지만 섹션 0의 처음 7 개 행을 제거하려면 다음과 같이 표시됩니다.

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가 말한 것처럼, 테이블에 동일한 포인터를 사용하십시오. 그렇지 않으면 약간 혼동 스럽습니다.

테이블을 completly reload하도록 말하고 싶다면 reloadData instaed를 호출하면됩니다.

[myTable reloadData]; 

나는이 덜 효과적 일 것이라고 생각 수동으로 행이 추가되거나 제거하지만 7의 테이블에 내가 잘 될 것이라고 생각되고있는 지정의 다른 방법.

+0

'[myTable에 reloadData ] 효율성을 위해 표보기는 표시되는 행만 다시 표시합니다. " –

관련 문제