对于 UITableViewCell 而言,其 accessoryType属性有4种取值:

UITableViewCellAccessoryNone,

UITableViewCellAccessoryDisclosureIndicator,

UITableViewCellAccessoryDetailDisclosureButton,

UITableViewCellAccessoryCheckmark

分别显示 UITableViewCell 附加按钮的4种样式:

无、、、。

除此之外,如果你想使用自定义附件按钮的其他样式,必需使用UITableView 的 accessoryView 属性。比如,我们想自定义一个

的附件按钮,你可以这样做:

UIButton *button ;

if(isEditableOrNot){

UIImage *image= [UIImage   imageNamed:@"delete.png"];

button = [UIButton buttonWithType:UIButtonTypeCustom];

CGRect frame = CGRectMake(0.0, 0.0, image.size.width, image.size.height);

button.frame = frame;

[button setBackgroundImage:imageforState:UIControlStateNormal];

button.backgroundColor= [UIColor clearColor];

cell.accessoryView= button;

}else {

button = [UIButton buttonWithType:UIButtonTypeCustom];

button.backgroundColor= [UIColor clearColor];

cell.accessoryView= button;

}

这样,当 isEditableOrNot 变量为 YES 时,显示如下视图:

但仍然还存在一个问题,附件按钮的事件不可用。即事件无法传递到 UITableViewDelegate 的 accessoryButtonTappedForRowWithIndexPath 方法。

也许你会说,我们可以给 UIButton 加上一个 target。

好,让我们来看看行不行。在上面的代码中加入:

[button addTarget:self action:@selector(btnClicked:event:)  forControlEvents:UIControlEventTouchUpInside];

然后实现btnClicked方法,随便在其中添加点什么。

点击每个 UIButton,btnClicked 方法中的代码被调用了!一切都是那么完美。

但问题在于,每个 UITableViewCell 都有一个附件按钮,在点击某个按钮时,我们无法知道到底是哪一个按钮发生了点击动作!因为addTarget 方法无法让我们传递一个区别按钮们的参数,比如 indexPath.row 或者别的什么对象。addTarget 方法最多允许传递两个参数:target和 event,而我们确实也这么做了。但这两个参数都有各自的用途,target 指向事件委托对象——这里我们把 self 即 UIViewController实例传递给它,event 指向所发生的事件比如一个单独的触摸或多个触摸。我们需要额外的参数来传递按钮所属的 UITableViewCell 或者行索引,但很遗憾,只依靠Cocoa 框架,我们无法做到。

但我们可以利用 event 参数,在 btnClicked 方法中判断出事件发生在UITableView的哪一个 cell 上。因为 UITableView 有一个很关键的方法 indexPathForRowAtPoint,可以根据触摸发生的位置,返回触摸发生在哪一个 cell 的indexPath。 而且通过 event 对象,我们也可以获得每个触摸在视图中的位置:

// 检查用户点击按钮时的位置,并转发事件到对应的accessorytapped事件

- (void)btnClicked:(id)senderevent:(id)event

{

NSSet *touches =[event allTouches];

UITouch *touch =[touches anyObject];

CGPointcurrentTouchPosition = [touch locationInView:self.tableView];

NSIndexPath *indexPath= [self.tableView indexPathForRowAtPoint:currentTouchPosition];

if (indexPath!= nil)

{

[self tableView: self.tableView accessoryButtonTappedForRowWithIndexPath:indexPath];

}

}

这样,UITableView的accessoryButtonTappedForRowWithIndexPath方法会被触发,并且获得一个indexPath 参数。通过这个indexPath 参数,我们可以区分到底是众多按钮中的哪一个附件按钮发生了触摸事件:

-(void)tableView:(UITableView*)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath*)indexPath{

int* idx= indexPath.row;

//在这里加入自己的逻辑

⋯⋯

}

最新文章

  1. TFS API:一、TFS 体系结构和概念
  2. oracle--导出、导入blob类型的字段
  3. chrome浏览器调试typescript
  4. Android自动化学习笔记之MonkeyRunner:MonkeyRunner的录制和回放
  5. UISplitViewController - iPad分屏视图控制器
  6. 利用spring、cxf编写并发布webservice
  7. Angular系列---- AngularJS入门教程03:AngularJS 模板(转载)
  8. Vi问题
  9. 三大域对象的使用总结request域 + session域 +
  10. java之socket
  11. phpMyAdmin安装
  12. Java学习之Java的单例模式
  13. 《项目架构那点儿事》——快速构建Junit用例
  14. screen使用
  15. spring中Bean对象的生命周期
  16. struts.xml,报错 1 c.opensymphony.xwork2.util.DomHelper
  17. Java8 默认方法
  18. Linux系统下公式编辑器KLatexFormula
  19. CentOS7 安装PHP7的redis扩展:
  20. for 与 for in

热门文章

  1. [luogu5162]WD与积木
  2. JavaScript 函数声明和变量声明
  3. 7.5 实现基于探针对pod中的访问的健康状态检查
  4. CF1288
  5. [NOI Online 2021 提高组] 积木小赛
  6. TVB斜率限制器
  7. halt
  8. 解决sourceforge下载文件慢的方法
  9. GIFS服务的使用
  10. 单元测试在Unity中的应用