- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有以下用于带有自定义单元格的 UITableView 的代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"FolderCellViewController"];
if (cell == nil) {
// Load the top-level objects from the custom cell XIB.
NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"FolderCellViewController" owner:self options:nil];
// Grab a pointer to the first object (presumably the custom cell, as that's all the XIB should contain).
cell = [topLevelObjects objectAtIndex:0];
cell.editingAccessoryView=accessoryView; //accessoryView is a UIView within a UITableViewCell, and it is properly connected in IB
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
return cell;
}
// Override to support conditional editing of the table view.
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return NO if you do not want the specified item to be editable.
return NO; //YES here makes a red delete button appear when I swipe
}
// Override to support editing the table view.
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {
// Delete the row from the data source
// [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
}
else if (editingStyle == UITableViewCellEditingStyleInsert) {
// Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
}
}
但对于某些人来说,当我滑动时什么也没有发生。除了这个我什么都没做 - 我还需要做些什么才能让它工作吗?
编辑:显然我所做的只是为整个表格处于编辑模式时设置编辑样式,而不是当我在每个单独的单元格上滑动时。所以我想要做的是,当我在每个单元格上滑动时,该单元格的自定义 accessoryView 就会出现。但我不确定该怎么做..
最佳答案
当单元格进入编辑模式时显示编辑辅助 View 。实际让这个工作似乎有点太难了,但我已经做到了:
为了在整个表格进入编辑模式时和滑动单个行时都显示它,我在我的 UITableViewController 子类中实现了以下内容:
- (void)setEditing:(BOOL)editing animated:(BOOL)animated {
if (editing)
self.editingFromEditButton = YES;
[super setEditing:(BOOL)editing animated:(BOOL)animated];
self.editingFromEditButton = NO;
// Other code you may want at this point...
}
editingFromEditButton
是子类的 BOOL 属性。当按下标准的“编辑”按钮时调用此方法。它用于以下方法,可防止显示标准删除按钮:
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (self.editingFromEditButton)
return UITableViewCellEditingStyleNone;
// Otherwise, we are at swipe to delete
[[tableView cellForRowAtIndexPath:indexPath] setEditing:YES animated:YES];
return UITableViewCellEditingStyleNone;
}
如果整个 TableView 被设置为编辑模式,那么每个单元格也将被发送 setEditing 消息。如果我们滑动了一行,则需要强制该单元格进入编辑模式,然后返回 UITableViewCellEditingStyleNone
样式以防止出现标准删除按钮。
然后,要关闭自定义编辑附件,您还需要以下代码:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// Cancel the delete button if we are in swipe to edit mode
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
if (cell.editing && !self.editing)
{
[cell setEditing:NO animated:YES];
return;
}
// Your standard code for when the row really is selected...
}
关于ios - 自定义 editingAccessoryView 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7295834/
这是一个难题:我想创建一个自定义 editingAccessoryView,其中包含两个用于我的库存 UITableViewCell 的按钮。我想使用 Storyboard来实现这一点。到目前为止,我
好的,首先 - 我希望我的单元格在编辑模式下如何查看我的 UItableView(带有一些更好的按钮): 但是 - 这是它现在的样子: 我的问题是我的自定义 EditingAccessoryView
我有以下用于带有自定义单元格的 UITableView 的代码: - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowA
我已经实现了自定义编辑附件 View ,如我对 this 的回答中所述题。在大多数情况下,它工作得很好,但我注意到它有一个小问题。 当我在表格 View 中滚动或选择另一行时,我的自定义编辑附件不会被
每当我向 UITableViewCell 添加accessoryView时,它都不会带有背景颜色?我将 UISwitch 设置为我的accessoryView,并且我在 cell.background
我是一名优秀的程序员,十分优秀!