表格视图编辑时如何设置附件类型?

发布于 2024-08-31 08:31:28 字数 861 浏览 5 评论 0原文

我正在使用 UITableView 属性来编辑它。 theTableView.editing = YES; theTableView.allowsSelectionDuringEditing = YES;

它工作正常,该行被选中,我正在进入下一个控制器,但我需要在该行中显示accessoryType。我正在使用下面的行,但即使它不起作用。 是否有任何属性或缺少任何东西来显示指示器。

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

我正在使用以下代码进行表视图。

theTableView = [[UITableView alloc] initWithFrame:tableRect style:UITableViewStyleGrouped]; 
theTableView.editing = YES;
theTableView.allowsSelectionDuringEditing = YES;
theTableView.delegate = self;
theTableView.dataSource = self;
theTableView.scrollEnabled=YES;
theTableView.separatorColor = [UIColor lightGrayColor];
theTableView.autoresizingMask=YES;
theTableView.allowsSelection=YES;
theTableView.sectionHeaderHeight=5;
theTableView.sectionFooterHeight=5;

[myView addSubview:theTableView];

请帮我。

谢谢你, 马丹·莫汉

I am using the UITableView properties to edit it.
theTableView.editing = YES;
theTableView.allowsSelectionDuringEditing = YES;

It is working fine, the row is selected and I am getting into the next controller but I need to display the the accessoryType in the row. I am using below line for that but even though it is not working.
Is there any property or any thing missing to display the indiactor.

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

I am using the below code for table view.

theTableView = [[UITableView alloc] initWithFrame:tableRect style:UITableViewStyleGrouped]; 
theTableView.editing = YES;
theTableView.allowsSelectionDuringEditing = YES;
theTableView.delegate = self;
theTableView.dataSource = self;
theTableView.scrollEnabled=YES;
theTableView.separatorColor = [UIColor lightGrayColor];
theTableView.autoresizingMask=YES;
theTableView.allowsSelection=YES;
theTableView.sectionHeaderHeight=5;
theTableView.sectionFooterHeight=5;

[myView addSubview:theTableView];

Please help me.

THank You,
Madan Mohan

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

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

发布评论

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

评论(1

热情消退 2024-09-07 08:31:28

您可以使用 UITableViewCell 类的 EditingAccessoryType 属性。

You can use the editingAccessoryType property of the UITableViewCell class.

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