【发布时间】:2013-12-18 06:47:01
【问题描述】:
您好,我已经创建了 UITableView。在 Touch of it 单元格上,我在其中插入更多行。在 UITableView 中插入更多行后,滚动不起作用。这只发生在 ios 7 中。
有人遇到过这个问题吗?
这是插入的代码。
NSArray *rowIndex = [NSArray arrayWithObject:[NSIndexPath indexPathForRow:1 inSection:[self.lastSelectedIndex section]]];
[self.table beginUpdates];
[self.table insertRowsAtIndexPaths:rowIndex withRowAnimation:UITableViewRowAnimationNone];
[self.table endUpdates];
【问题讨论】:
标签: ios iphone uitableview ios7