2011-04-13 54 views
0

當我通過調用handleSearchTerm子例程的TextDidChange在TableView上搜索時,它完美的工作。但是,我刪除了TextDidChange並使用SearchButtonClicked來更新tableView(使用相同的子例程),但它並沒有正確更新TableView,並且在滾動時(cellForRowAtIndex中的綁定索引超出限制)崩潰,即使數據源已在子例程中更改。任何想法?iphone在搜索問題後更新tableview

[78515:207] *** Terminating app due to uncaught exception 'NSRangeException', reason: '-[__NSCFArray objectAtIndex:]: index (8) beyond bounds (8)' 
*** Call stack at first throw: 
(
0 CoreFoundation      0x00db8be9 __exceptionPreprocess + 185 
1 libobjc.A.dylib      0x00f0d5c2 objc_exception_throw + 47 
2 CoreFoundation      0x00d71628 +[NSException raise:format:arguments:] + 136 
3 CoreFoundation      0x00d7159a +[NSException raise:format:] + 58 
4 CoreFoundation      0x00dae8c9 _NSArrayRaiseBoundException + 121 
5 CoreFoundation      0x00db0027 -[__NSCFArray objectAtIndex:] + 87 
6 DrinkGuide_v1.0      0x00005d6c -[AllDrinkTableViewController tableView:cellForRowAtIndexPath:] + 371 
7 UIKit        0x003357fa -[UITableView(UITableViewInternal) _createPreparedCellForGlobalRow:withIndexPath:] + 634 
8 UIKit        0x0032b77f -[UITableView(UITableViewInternal) _createPreparedCellForGlobalRow:] + 75 
9 UIKit        0x00340450 -[UITableView(_UITableViewPrivate) _updateVisibleCellsNow:] + 1561 
10 UIKit        0x00338538 -[UITableView layoutSubviews] + 242 
11 QuartzCore       0x01c76451 -[CALayer layoutSublayers] + 181 
12 QuartzCore       0x01c7617c CALayerLayoutIfNeeded + 220 
13 QuartzCore       0x01c6f37c _ZN2CA7Context18commit_transactionEPNS_11TransactionE + 310 
14 QuartzCore       0x01c6f0d0 _ZN2CA11Transaction6commitEv + 292 
15 QuartzCore       0x01c9f7d5 _ZN2CA11Transaction17observer_callbackEP19__CFRunLoopObservermPv + 99 
16 CoreFoundation      0x00d99fbb __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 27 
17 CoreFoundation      0x00d2f0e7 __CFRunLoopDoObservers + 295 
18 CoreFoundation      0x00cf7bd7 __CFRunLoopRun + 1575 
19 CoreFoundation      0x00cf7240 CFRunLoopRunSpecific + 208 
20 CoreFoundation      0x00cf7161 CFRunLoopRunInMode + 97 
21 GraphicsServices     0x016ed268 GSEventRunModal + 217 
22 GraphicsServices     0x016ed32d GSEventRun + 115 
23 UIKit        0x002d042e UIApplicationMain + 1160 
24 DrinkGuide_v1.0      0x0000298c main + 102 
25 DrinkGuide_v1.0      0x0000291d start + 53 
) 
terminate called after throwing an instance of 'NSException' 

回答

1

我認爲暴跌是由引起的cellForRowAtIndexPath,你可以請張貼代碼如下方法:

cellForRowAtIndexPath 
SearchButtonClicked 
yourSubroutine you are calling 

也提到你的arraycollection從中加載你的表。

感謝,

+0

多數民衆贊成在正確的,我知道哪裏崩潰,我知道它崩潰的原因。我的意思是,searchBarSearchButtonClicked和TextDidChange使用相同的子程序,但結果不同。 – 2011-04-13 03:13:42

+0

你只是在這些方法中調用這個例程,你沒有做任何其他的事情嗎?意思-SearchButtonClicked(){yourroutine(); //沒有其他的東西} – Ravin 2011-04-13 03:17:32

+0

@Ravin從搜索欄中獲取文本並將其傳遞給子例程即全部 – 2011-04-13 03:18:44

0

按你的崩潰日誌,看來你是在你重新調整錯誤的細胞沒有noOfcellsInsection方法。你正在得到數組超出界限的錯誤。當你正在做搜索時,使一個標誌爲真,根據該標誌,使用你過濾的數組的數量返回表視圖的行數。