search DisplayControllerによる配列逸脱処理方法


次はsearch DisplayControllerによる配列の境界を越える処理方法を皆さんに共有します。
[search DisplayController.search ResTable View set SeparatoStyle:UITable View Celseparators StyNone]を送ると、崩壊します。
エラーメッセージは以下の通りです。

Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayI objectAtIndex:]: index 1 beyond bounds [0 .. 0]'

*** First throw call stack:

(

0  CoreFoundation           0x000000010c6c6c65 __exceptionPreprocess + 165

1  libobjc.A.dylib           0x000000010c35fbb7 objc_exception_throw + 45

2  CoreFoundation           0x000000010c5bd17e -[__NSArrayI objectAtIndex:] + 190

3  UIKit                0x000000010d230fd2 -[UITableViewDataSource tableView:indentationLevelForRowAtIndexPath:] + 106

4  UIKit                0x000000010cdfb1b9 __53-[UITableView _configureCellForDisplay:forIndexPath:]_block_invoke + 1711

長い間調べてやっと原因を調べました。エラーのロゴにヒントがあります。

3  UIKit                0x000000010d230fd2 -[UITableViewDataSource tableView:indentationLevelForRowAtIndexPath:] + 106
    :

-(NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath
{
  return 0;
}
以上のコードはsearch DisplayControllerによって引き起こされる配列の境界を越える処理方法の解決案に対して、皆さんに助けを与えたいです。