UITableViewCell 编辑时应缩进问题

发布于 2024-10-15 15:31:33 字数 633 浏览 2 评论 0原文

我遇到了表格视图的编辑模式问题。当我们将表格设置为编辑模式时,它会将行单元格缩进到右侧的编辑字段的右侧。我想阻止这一切发生。我已经设置了 cell.shouldIndentWhileEditing = NO;但这并没有改变任何事情。

另一件需要注意的事情是这个单元格是以编程方式动态构建的,例如

static NSString *CellIdentifier = @"ListingCustomCell";

    UITableViewCell *cell = (UITableViewCell *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {

        cell = [[UITableViewCell alloc]initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, 34) reuseIdentifier:CellIdentifier];

    }
    cell.shouldIndentWhileEditing = NO;

//SETUP CELL FIELDS

//return cell;

对我做错了什么有什么想法吗?

谢谢

Im having issues the editing mode of the tableview. When we set the table to edit mode it indents the row cells to the right for edit field on the right. I want to stop this from happening. I have set the cell.shouldIndentWhileEditing = NO; but this doesn't change anything.

Another thing to note is this cell is programmatically built on the fly e.g.

static NSString *CellIdentifier = @"ListingCustomCell";

    UITableViewCell *cell = (UITableViewCell *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {

        cell = [[UITableViewCell alloc]initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, 34) reuseIdentifier:CellIdentifier];

    }
    cell.shouldIndentWhileEditing = NO;

//SETUP CELL FIELDS

//return cell;

Any ideas on what im doing wrong?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

嘦怹 2024-10-22 15:31:33

也许您的 UITableViewDelegate 在 - (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath 中返回 YES。如果实现了委托方法,它将覆盖单元格上的值。

Perhaps your UITableViewDelegate is returning YES in - (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath. If the delegate method is implemented, it'll override the value on the cell.

风筝在阴天搁浅。 2024-10-22 15:31:33

您阅读了文档的这一部分吗?

此属性仅对在分组中创建的表视图有效
样式(UITableViewStyleGrouped);它没有影响
UITableViewStylePlain 表视图。

也许这就是你的情况。

Did you read this part of the documentation?

This property has an effect only on table views created in the grouped
style (UITableViewStyleGrouped); it has no effect on
UITableViewStylePlain table views.

Maybe that’s your case.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文