我正在使用UITableView属性对其进行编辑。
theTableView.editing = YES;
theTableView.allowsSelectionDuringEditing = YES;

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

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];


请帮我。

谢谢,
玛丹·莫汉(Madan Mohan)

最佳答案

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

10-04 19:51