私はこれについて調査しましたが、まだ解決策が見つかっていないようです。カスタムUITableViewCell(ラジオボタン、ラベルなどを含むさまざまなサブビュー)があります。私は、テーブルビューが編集中に設定されているときに、セルの左端に+と - の挿入/削除編集コントロールを表示したいと思います。編集コントロールの挿入/削除がカスタムUITableViewCellの編集中に表示されない
標準のUITableViewCellを使用した場合、これは完全に機能します。しかし、カスタムセルを使用している間は、コントロールは表示されません。誰もが同じように修正する方法についての任意のアイデアがありますか?以下は
は....私のテーブルビューコードのいくつかのスナップショットです- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (self.isEditing) {
if ([tableView isEqual:self.tableView]) {
if (editingStyle == UITableViewCellEditingStyleInsert) {
// ...
}
else if (editingStyle == UITableViewCellEditingStyleDelete) {
// ...
}
}
}
}
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
if ([tableView isEqual:self.tableView]) {
if (indexPath.row == 0) {
return UITableViewCellEditingStyleInsert;
}
else {
return UITableViewCellEditingStyleDelete;
}
}
else {
return UITableViewCellEditingStyleNone;
}
}
とカスタムテーブルビューセルコード
...- (void)awakeFromNib
{
[super awakeFromNib];
}
- (void)setEditing:(BOOL)editing animated:(BOOL)animated
{
[self setNeedsLayout];
}
- (void)layoutSubviews
{
[super layoutSubviews];
[self configureConstraints];
}
- (void)configureConstraints
{
// This is where the cell subviews are laid out.
}
ありがとう@rmaddy ...これは完全に動作します!スーパーミスでこの実装で私の監督!もう一度ありがとう - 私はちょうどちょうど最小時間の後に答えを受け入れるよ!コンパレータのチップもありがとう! – vikram17000