iPad xib ファイルに UITableView があります。
デリゲート メソッド:
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}
正しく呼び出されます。
しかし、行に触れたり、スワイプして削除したりしても、何も起こりません。xib ファイルで、テーブルの「User Interaction Enabled」がオンになっています。
ありがとう
更新:これをデリゲートに追加しましたが、まだ何もありません:
-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
return UITableViewCellEditingStyleDelete;
}