- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我想知道是否有办法阻止“清除”按钮出现在特定的 uitableviewcell 上并让它出现在另一个 uitableviewcell 上?
我已经设置了一个自定义的 uitableview 单元格,里面有一个按钮,我正在使用
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
方法.. 我想知道您是否可以在用户滑动删除时停止出现在几个 uitableviewcells 之一上的按钮?
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
return @"Clear";
}
// Override to support editing the table view.
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.section == 0)
{
//cell fade - notifies the user that they are edited their cell
NSArray *rowArray = [NSArray arrayWithObject:indexPath];
[self.tableView reloadRowsAtIndexPaths:rowArray withRowAnimation:UITableViewRowAnimationFade];
if (indexPath.row == 0)
{
manufactureSearchObjectString = @"empty";
[self.tableView reloadData]; //reloads the tabel with new value
manufactureResultIndexPath = nil; //removes tick from subview
}
else if (indexPath.row == 1)
{
}
else if (indexPath.row == 2)
{
}
else if (indexPath.row == 3)
{
keyTypeSearchObjectString = @"empty";
[self.tableView reloadData]; //reloads the tabel with new value
keyTypeResultIndexPath = nil; //removes tick from subview
}
}
else if (indexPath.section == 1)
{
if (indexPath == 0)
{
//can I stop the "clear" button from showing in here?
}
}
}
更具体一点,我想阻止这种情况发生
最佳答案
使用下面的方法
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.section == 1)
{
if (indexPath.row == 0)
{
return NO;// you can stop the "clear" button from showing in here?
}
else
return YES;
}
else
return YES;
}
关于iphone - TableView :commitEditingStyle:forRowAtIndexPath how to stop delete button from showing on some cells,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7669863/
在我所有的 UITableView 编程中,我总是在 -[UITableViewDataSource tableView:cellForRowAtIndexPath:] 中配置我的 UITableVi
我有一个tableView显示一个对象的NSMutableArray,并且我目前正在尝试实现tableView:commitEditingStyle:forRowAtIndexPath:方法。如果我将
这里的小错误可能是愚蠢的。我正在从文档目录中读取文件。我根据特定键的值过滤结果。以及我在 UITableView 中呈现的特定值内具有特定字符串的任何内容。行数已正确填充,但 cell.textLab
我偶然发现了一篇博文,其中一位作者解释了如何在滚动整个表格 View 时使用以下方法逐渐扩大单元格的大小: -(void)tableView:(UITableView *)tableView will
正如问题的标题提到的:“cellForRowAtIndexPath”和“willDisplayCell: forRowAtIndexPath:”有什么区别?` 我认为可以在 cellForRowAtI
我想在我的 UITableViewCell 中显示信息。我希望能够在单元格上向左滑动,而不是显示 deleteCellButton 我想看到一段内容。我该如何重写此方法才能做到这一点。 - (void
通常,当您定义-tableView:commitEditingStyle:forRowAtIndexPath时,您可以通过滑动将所有单元格切换到编辑模式。 但是,我只想为特定的单元格启用 -table
我终于找到了一个奇怪的崩溃。这是由 tableView:commitEditingStyle:forRowAtIndexPath: 调用时使用 nil indexPath 引起的。但这怎么可能呢? -
在我的代表中它显示警告 - (BOOL)tableView:(UITableView *)tableView performAction:(SEL)action forRowAtIndexPath:(
我想知道是否有办法阻止“清除”按钮出现在特定的 uitableviewcell 上并让它出现在另一个 uitableviewcell 上? 我已经设置了一个自定义的 uitableview 单元格,里
这是我设置自定义分组表格 View 单元格背景的解决方案: - (UIView *)top { if (_top) { return _top; } _top
我是一名优秀的程序员,十分优秀!