次の単純で単純なことを考えてみましょうUITableViewController
: 行をタップすると、選択した行がログに記録され、スワイプして削除すると、モデル内のアイテムが削除され、データが再ロードされます。
@interface DummyTableViewController : UITableViewController
@property (nonatomic, strong) NSMutableArray *items;
@end
@implementation DummyTableViewController
- (instancetype)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self)
{
_items = [ @[ @"A", @"B", @"C", @"D", @"E" ] mutableCopy];
}
return self;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [self.items count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:nil];
cell.textLabel.text = self.items[indexPath.row];
return cell;
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete)
{
[self.items removeObjectAtIndex:indexPath.row];
[tableView reloadData];
}
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"Row %@ tapped.", self.items[indexPath.row]);
}
iOS6 では、これはすべて期待どおりに機能しますが、iOS7 では次のような動作になります。行が削除され、データが再ロードされた後、テーブル セルの最初の次のタップは無視されます。テーブル セルの選択を再度トリガーするのは、2 回目のタップだけです。これを引き起こしている可能性のあるもの、またはそれを回避する方法について何か考えはありますか? 問題は、上記のコードを使用して iOS7 で簡単に再現できるはずです。