自定義UITableViewCell 的delete按鈕

自定義UITableViewCell上的delete按鈕

滑動列表行(UITableViewCell)出現刪除按鈕時,默認是英文「delete」,這份代碼片斷可以將「delete」變成中文」刪除「,甚至能夠自定義刪除按鈕的形狀。
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//經過UITableViewDelegate方法能夠實現刪除 tableview中某一行
//滑動刪除
-( void )tableView:( UITableView *)tableView commitEditingStyle :(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath :( NSIndexPath *)indexPath
{  
     NSUInteger row = [indexPath row ];
     [bookInforemoveObjectAtIndex:row]; //bookInfo爲當前table中顯示的array
     [tableView deleteRowsAtIndexPaths :[NSArrayarrayWithObject:indexPath]withRowAnimation:UITableViewRowAnimationLeft];
}
 
/*此時刪除按鈕爲Delete,若是想顯示爲「刪除」 中文的話,則須要實現
UITableViewDelegate中的- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath方法*/
 
- ( NSString *)tableView:( UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath :( NSIndexPath *)indexPath{   
     return @"刪除" ;   
}   
//或者,最簡單的方式,將plist中的Localization native development region改成China便可
 
//這只是讓默認的Delete按鈕顯示成了中文的刪除按鈕而已,若是想將這個刪除按鈕換成其餘圖片形式的,怎麼辦呢?
-( UITableViewCell *)tableView:( UITableView *)tableView cellForRowAtIndexPath :( NSIndexPath *)indexPath   
{   
     static NSString * RootViewControllerCell = @"RootViewControllerCell" ;   
     UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier :RootViewControllerCell];   
     if (cell == nil )   
     {   
         cell = [[[ UITableViewCell alloc ] initWithFrame : CGRectZero reuseIdentifier :RootViewControllerCell]autorelease];   
             
         UIButton *button = [ UIButton buttonWithType :UIButtonTypeCustom];   
         [button setBackgroundImage :[ UIImage imageNamed : @"delete.png" ] forState :UIControlStateNormal];   
         [button setFrame :CGRectMake( 2 8 0 , 1 0 , 3 0 , 3 0 )];   
         [button addTarget : self action : @selector (del:) forControlEvents :UIControlEventTouchUpInside];   
         [cell .contentView addSubview :button];          
     }   
         
     cell .textLabel .text = [array objectAtIndex :[indexPath row ]];   
     cell .tag = [indexPath row ];   
         
     NSArray *subviews = [cell .contentView subviews ];   
     for ( id view in subviews)   
     {   
         if ([view isKindOfClass :[ UIButton class ]])   
         {   
             [view setTag :[indexPath row ]];   
             [cell .contentView bringSubviewToFront :view];   
         }   
     }   
     return cell;   
}   
     
-( void )del:( UIButton *)button   
{   
     NSArray *visiblecells = [ self .table visibleCells ];   
     for ( UITableViewCell *cell in visiblecells)   
     {   
         if (cell .tag == button .tag )   
         {   
             [array removeObjectAtIndex :[cell tag ]];   
             [table reloadData ];   
             break;   
         }   
     }   
}
相關文章
相關標籤/搜索