- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个伟大的社区大家好。我只需要在 tableView 中实现一个简单的删除功能。我知道这可以使用滑动删除( TableView 委托(delegate))来实现。但客户需要这样的东西:
我使用 cell.accessoryView = trash_icon;
完成了这个设计。现在的要求是,
当我点击 tableView 单元格时。它必须显示的详细信息车辆。
如果我点击垃圾箱/垃圾桶图标,它必须删除该行。
我已经使用 cellForRowAtIndexPath
为 Cells 成功导航到车辆详细信息。但坚持执行删除选项。问题是每当我点击垃圾桶图标时,它都会转到车辆详细信息页面。我看过以下内容link1 , link2 , link3等等,但我无法理解实现这一点的想法。我还通过将单元格指定为 cell.accessoryType = UITableViewCellAccessoryCheckmark
、cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton
尝试了 accessoryButtonTappedForRowWithIndexPath
它可以工作,但问题是我无法更改 accessoryType 的默认图像。请多多指教,感谢您的耐心阅读!
编辑:到目前为止我尝试过的是:
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// cell.backgroundColor = UIColorFromRGB(0x717579);
cell.backgroundColor = [UIColor clearColor];
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.backgroundView.backgroundColor = [UIColor clearColor];
cell.textLabel.backgroundColor = [UIColor clearColor];
cell.textLabel.font = [UIFont fontWithName:NSLocalizedString(@"font_name",nil) size:13];
cell.textLabel.textAlignment = NSTextAlignmentLeft;
cell.textLabel.textColor = [UIColor whiteColor];
UIImageView *trash_icon = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"ic_vehicle_delete.png"]];
if(indexPath.section != [vehicleDetails count]) {
//cell.accessoryView = trash_icon; --> If I keep this only Image appears but the action doesn't gets triggered
} else {
cell.accessoryType = UITableViewCellStyleDefault
}
if(indexPath.section == [vehicleDetails count])
{
addnewLabel.font = [UIFont fontWithName:NSLocalizedString(@"font_name",nil) size:13];
addnewLabel.backgroundColor = [UIColor clearColor];
addnewLabel.textColor = [UIColor whiteColor];
addnewLabel.text = NSLocalizedString(@"vehicle_new",nil);
[cell addSubview:addnewLabel];
cell.textLabel.text = @"";
UIImageView *background = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"input-plus.png"]]autorelease];
background.frame = CGRectMake(0, 0, 300, 35);
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0"))
background.frame = CGRectMake(10, 0, 300, 35);
cell.backgroundView = [[[UIView alloc]initWithFrame:CGRectMake(cell.frame.origin.x, cell.frame.origin.y, 300, 35)]autorelease];
[cell.backgroundView addSubview:background];
}else
{
cell.textLabel.text =[NSString stringWithFormat:@"Vehicle #%li: %@",indexPath.section+1,[[vehicleDetails objectAtIndex:indexPath.section] valueForKey:@"make"]];
UIImageView *background = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"text field 2x.png"]]autorelease];
background.frame = CGRectMake(0, 0, 300, 35);
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0"))
background.frame = CGRectMake(10, 0, 300, 35);
cell.backgroundView = [[[UIView alloc]initWithFrame:CGRectMake(cell.frame.origin.x, cell.frame.origin.y, 300, 35)]autorelease];
[cell.backgroundView addSubview:background];
}
return cell;
}
以上方法成功调用
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath;{
//here I do the delete stuff
但是输出看起来像:
最佳答案
你可以用委托(delegate)设计模式来做
STEP-I : Make the protocol to delegate with cell
这个协议(protocol)你会在UIViewController类中确认并且包含两个方法
accessoryViewDidTapped : accessoryView 确实点击时调用的方法
protocol ItemCellDelegate :class{
func cellDidTaaped(withCell cell:ItemCell)
func accessoryViewDidTapped(withCell cell:ItemCell, state :Bool)
}
STEP-II : Make the UITableViewCell class to customize the accessory view
注意:我们定义了一个bool Flag,通过协议(protocol)发送给它,判断accessoryView的状态是否需要改变它的图片
class ItemCell: UITableViewCell {
weak var delegte:ItemCellDelegate?
private var accessoryViewTappedFlag = false
override func awakeFromNib() {
super.awakeFromNib()
self.selectionStyle = UITableViewCellSelectionStyle.none
let cellGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(ItemCell.cellViewDidTapped))
self.addGestureRecognizer(cellGestureRecognizer)
let imageView = UIImageView(frame: CGRect(x: 0, y: 0, width: 40, height: 40))
imageView.isUserInteractionEnabled = true
self.accessoryView = imageView
(self.accessoryView as! UIImageView).image = #imageLiteral(resourceName: "Birthdays")
let gestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(ItemCell.accessoryViewDidTapped))
accessoryView!.addGestureRecognizer(gestureRecognizer)
}
func accessoryViewDidTapped() {
self.accessoryViewTappedFlag = !accessoryViewTappedFlag
delegte?.accessoryViewDidTapped(withCell: self, state: accessoryViewTappedFlag)
}
func cellViewDidTapped() {
delegte?.cellDidTaaped(withCell: self)
}
}
STEP-III : Make UIViewControler the delegate of call
tableView调用cellForRowAt时必须确认cell的delegate
功能
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "ItemCell", for: indexPath) as! ItemCell
cell.delegte = self
....
return cell
}
STEP-IV : Confirm the delegate of cell at UIViewControler class
确认listItemsVC(UIViewControler)上的ItemCellDelegate并实现方法
extension listItemsVC:ItemCellDelegate{
func cellDidTaaped(withCell cell: ItemCell) {
let indexPath = tableView.indexPath(for: cell)
//.....
}
func accessoryViewDidTaaped(withCell cell: ItemCell, state: Bool) {
let indexPath = tableView.indexPath(for: cell)
if let accessoryView = cell.accessoryView as? UIImageView {
if state{
accessoryView.image = #imageLiteral(resourceName: "Trips")
}else{
accessoryView.image = #imageLiteral(resourceName: "Folder")
}
}
}
}
注意:现在不需要 didSelectRowAt 方法
关于ios - 无法使用 tableview cell.accessoryView 进行 Click 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52664646/
将 .off 与 .click 结合使用有何用途或区别? $('#link').off('click').on('click',function(){}); 对比 $('#link').on('cli
我正在学习 javascript,并且我见过不止一种注册点击事件的方法: $(DOMelement).click(function() {}); $(DOMelement).on('click',fu
我习惯使用.click()和delegate('click') ,所以当我读到这两个在 jQuery 的最新版本中都被弃用时,我想我应该读一下它,但我有点摸不着头脑。 文档 here似乎表明这是 .l
我已经使用它们很长一段时间了,但大多数时候,我更喜欢较短的,但是,我只是想真正深入了解本质细节。我可能一直在创建有错误的代码,并且我不想在网络上贡献和传播懒惰完成的代码。 所以,告诉我: What a
我想实现类似在 Android 上点击 Instagram 中的帖子的功能(我认为在 iOS 上应该是相同的功能)。在 Instagram 中,如果有人点击照片,它会打开,双击,它会被喜欢,然后单击并
我的点击事件有问题。它运行 1 次。示例: 我有 3 页(1 2 3)。当我点击 2 时它起作用了。然后在第 3 页,它又可以工作了。但我再次点击 2 不起作用。该事件未触发。 $("div .top
我正在尝试这样做。在 jsfiddle 中:http://jsfiddle.net/QGGhW/2/ 但是在我点击 not now 之后,下一个文本输入就不再可点击了。 我该怎么做?是否有类似 .on
我想知道是否有任何情况下使用 .click(function {...}); 而不是 .live('click', function { ...});? 据我所知,实时选项似乎是一个更好的选择,因此我
我正在尝试在 Accordion 内部创建一个 Accordion ......并且我有点挣扎。 本质上,我有一个 div .applicant,单击它会添加一个 .expand 类,它将高度设置为
我可以使用一些帮助来调试这个: var factBody = jQuery(".fact__body"); jQuery(".fact").on("click", function() { j
如果我有一个用于 clicked 类的监听器,以及另一个用于 click-option-1、click-option-2 类的监听器,以及click-option-3,如何在我的 clicked 事件
下面的代码有什么区别吗? $('#whatever').on('click', function() { /* your code here */ }); 和 $('#whatever').
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 9 年前。 Improv
我不擅长 UI 设计,所以我使用 bootstrap 和 jquery 来帮助我一点。我正在尝试将 jQuery 事件绑定(bind)到导航栏,因此当用户单击导航栏上的 p 标签时,它应该触发单击事件
问题是,当我单击 delaccbut 按钮时,单击功能起作用并显示消息,但是当我单击 confdel 或 redel 按钮来自 click 函数,它不...为什么? HTML: Delete my
我想要完成的是“类似”的东西 $("button .toggleExcerpt) .toggle( function FIRST() { do first function..
function show1(){ $("#btn").click(show2()); window.alert(
我不明白为什么这不起作用。当我单击具有该类名的复选框时,clickId 被赋予值access-toggle-all,所以这没有意义(至少对我来说).. $(document).ready(functi
我有一个关于 click() 的复杂问题。我有 4 个按钮,分别命名为功能 1、功能 2、方法 1 和方法 2。 Function 1 Function 2 Method 1 Method 2 当单
最后,我认为这不是我特别需要解决的问题,但我不明白为什么会这样,这让我很困扰。 基本上,我有一些复选框,我只希望用户能够选择其中的一定数量。我正在使用下面的代码来实现该效果。 $j( function
我是一名优秀的程序员,十分优秀!