表格视图编辑时如何设置附件类型?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 UITableViewCell 类的 EditingAccessoryType 属性。
You can use the editingAccessoryType property of the UITableViewCell class.