自定義UITableViewCell的accessory樣式
默認的accessoryType屬性有四種取值:UITableViewCellAccessoryNone、 UITableViewCellAccessoryDisclosureIndicator、 UITableViewCellAccessoryDetailDisclosureButton、 UITableViewCellAccessoryCheckmark。
若是想使用自定義附件按鈕的其餘樣式,則需使用UITableView的
accessoryView屬性來指定。
- UIButton *button;
- if(isEditableOrNot) {
- UIImage *p_w_picpath = [UIImage p_w_picpathNamed:@"delete.png"];
- button = [UIButton buttonWithType:UIButtonTypeCustom];
- CGRect frame = CGRectMake(0.0,0.0,p_w_picpath.size.width,p_w_picpath.size.height);
- button.frame = frame;
- [button setBackgroundImage:p_w_picpath forState:UIControlStateNormal];
- button.backgroundColor = [UIColor clearColor];
- cell.accessoryView = button;
- }else{
- button = [UIButton buttonWithType:UIButtonTypeCustom];
- button.backgroundColor = [UIColor clearColor];
- cell.accessoryView = button;
- }
以上代碼僅僅是定義了附件按鈕兩種狀態下的樣式,問題是如今這個自定義附件按鈕的事件仍不可用。
即事件還沒法傳遞到 UITableViewDelegate的accessoryButtonTappedForRowWithIndexPath方法上。
當咱們在上述代碼 中在加入如下語句:
[button addTarget:self action:@selector(btnClicked:event:) forControlEvents:UIControlEventTouchUpInside];
後, 雖然能夠捕捉到每一個附件按鈕的點擊事件,但咱們還沒法進行區別究竟是哪一行的附件按鈕發生了點擊動做!由於addTarget:方法最多容許傳遞兩個參 數:target和event,這兩個參數都有各自的用途了(target指向事件委託對象,event指向所發生的事件)。看來只依靠Cocoa框架已 經沒法作到了。
但咱們仍是能夠利用event參數,在自定義的btnClicked方法中判斷出事件發生在UITableView的哪個cell上。由於UITableView有一個很關鍵的方法
indexPathForRowAtPoint,能夠根據觸摸發生的位置,返回觸摸發生在哪個cell的indexPath。並且經過event對象,正好也能夠得到每一個觸摸在視圖中的位置。
-
- - (void)btnClicked:(id)sender event:(id)event
- {
- NSSet *touches = [event allTouches];
- UITouch *touch = [touches anyObject];
- CGPoint currentTouchPosition = [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;
-
- }