我想在单元格中添加自定义EditingAccessoryView,当用户滑动代替删除按钮时,我想显示我的自定义视图。
答案 0 :(得分:2)
似乎没有这方面的功能。您可以使用以下功能为删除确认按钮提供自定义文本。
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
答案 1 :(得分:-1)
xib中的设计视图,如下面的例子
现在在.h文件中创建uiview的IBOutlet
IBOutlet UIView *accessoryView;
将IBOutlet连接到您的设计视图。
现在在.m文件中将该视图设置为表格单元格的editAccessoryView
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
cell.editingAccessoryView = accessoryView;
}
}
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
return NO;
}
现在,当您滑动自定义视图时,将显示代替删除按钮