我正在使用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];
请帮帮我。
感谢你, Madan Mohan
答案 0 :(得分:7)
您可以使用UITableViewCell类的editingAccessoryType属性。