に点滅(iOS10上で正常に動作します)しかし、すべての背景色は、ストーリーボードに青に設定されているいくつかの理由で表示されます。iOSの11/Xcodeの9:UITableViewCellの白い背景がUITableViewCellの予想外の白い背景を削除するにiOSの11デバイスのDelete
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete)
{
[self.bookmarks removeObjectAtIndex:indexPath.row];
[self.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
}
}
がUITableViewRowAnimationのすべての種類を試してみましたが、問題を解決していません。
私もこの問題を抱えています。セルの 'backgroundView'を白以外の背景のビューに設定しても効果はありません。 –
私はすでにのtableViewの周り果たし」と効果なしでセルの見解(contentVieц/ accessoryView)背景/色合い色きた... –
は、この問題のためにAppleとバグ提出すべきか? –