// 要插入的位置
NSIndexSet*helpIndex = [NSIndexSetindexSetWithIndexesInRange:NSMakeRange(1, [helpSellArrcount])];
// 要插入的数组
[
self
.
helpArr
insertObjects
:helpSellArr
atIndexes
:helpIndex];
// 在没有tableview的index.row的情况下找到tabbleview的指定cell的方式
NSIndexPath *index = [NSIndexPath indexPathForRow:i inSection:0];
// 设置所要找到的cell
[self.bedTableview cellForRowAtIndexPath:index] // 找到指定的tableviewcell