UITableView左右滑動刪除常見問題

對於app應用來講,使用列表的形式展示數據非UITableView莫屬.在熟練掌握了用UITableView展現數據之後,是否是也遇到了須要刪除數據的需求?是否是以爲在一行數據上划動一下,而後出現一個刪除按鈕很酷?廢話少說,直奔正題,就由筆者來向您展現一下這個功能的實現是多麼容易.

先前的準備工做:
第一步,準備好數據源.

#import <UIKit/UIKit.h>
  
@interface UITableCellSwapDeleteViewController : UIViewController <UITableViewDelegate>{
    IBOutlet UITableView *testTableView;
    NSMutableArray *dataArray;
}
@property (nonatomic, retain) UITableView *testTableView;
@property (nonatomic, retain) NSMutableArray *dataArray;
@end
  
- (void)viewDidLoad {
    [super viewDidLoad];
    dataArray = [[NSMutableArray alloc] initWithObjects:@"1",@"2",@"3",@"4",@"5",nil];
    
}
這裏筆者定義了並實現了一個一維的可變數組.爲何要用可變數組呢?由於咱們要刪除裏面的數據呀.

第二步,展現數據.

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    // Return the number of sections.
    return 1;
}
  
  
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    // Return the number of rows in the section.
    return [dataArray count];
}
  
  
// Customize the appearance of table view cells.
- (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];
    }
    
    // Configure the cell...
    cell.textLabel.text = [dataArray objectAtIndex:indexPath.row];
    return cell;
}
經過實現上面三個代理方法向UITableView中添加了數據.


經過上面兩步就實現了數據展現工做,接下就實現關鍵的數據刪除了.


- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
    return YES;
}
  
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
  
     if (editingStyle == UITableViewCellEditingStyleDelete) {
         [dataArray removeObjectAtIndex:indexPath.row];
         // Delete the row from the data source.
         [testTableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
          
     }    
     else if (editingStyle == UITableViewCellEditingStyleInsert) {
     // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view.
     }    
}
啓用上面兩個代理,並增長數據刪除操做:
[dataArray removeObjectAtIndex:indexPath.row];
在一條數據上向右划動一下.

點Delete.

是否是就成功刪除了一條數據呢?
按理說故事講到這裏也就講完了.可是筆者想延伸一下.注意看圖二劃動之後的"Delete",你有沒有想把這個東東改掉的衝動呢?好比改爲:下載?其實很簡單,其實下面這個代理方法:

- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{
        return @"下載";
}





iOS中的UITableView,在上面滑動時,能夠出現一個「刪除」按鈕,來進行刪除操做。
可是,有些時候,因爲實現方法不對,滑動時,這個按鈕卻顯示不出來。分析了一下緣由,大概以有下幾個要素: 數組

1.UITableViewDelegate中的下面一個方法:
  1. // Allows customization of the editingStyle for a particular cell located at 'indexPath'. If not implemented, all editable cells will have UITableViewCellEditingStyleDelete set for them when the table has editing property set to YES.
  2. - (UITableViewCellEditingStyle)tableView: (UITableView *)tableView editingStyleForRowAtIndexPath: (NSIndexPath *)indexPath;

這個方法能夠不實現,默認會是響應滑動手勢,顯示「刪除」按鈕的效果。若是實現的話,必定要返回類型:UITableViewCellEditingStyleDelete。不然在cell上左右滑動時,不會出現「刪除」按鈕。

2.UITableViewDataSource中的下面兩個方法:
  1. // Allows the reorder accessory view to optionally be shown for a particular row. By default, the reorder control will be shown only if the datasource implements -tableView:moveRowAtIndexPath:toIndexPath:
  2. - (BOOL)tableViewUITableView *)tableView canMoveRowAtIndexPathNSIndexPath *)indexPath;

這個方法表示判斷對應的indexPath的cell是否能夠編輯。能夠不實現,默認是能夠編輯的,若是實現的話,必定要返回YES。不然出不來「刪除」按鈕。

  1. - (void)tableViewUITableView *)tableView commitEditingStyleUITableViewCellEditingStyle)editingStyle forRowAtIndexPathNSIndexPath *)indexPath;
返回你想顯示的文本就能夠了。

這個方法必定要實現,由於系統會判斷你是否實現了這個方法,只有實現了這個方法,在cell上左右滑動時纔會出現「刪除」按鈕。

總之,正確實現上面三個方法,「刪除」按鈕應該會顯示出來。
還要別忘了指定tableView的dataSource和delegate啊,否則一切都是白費的。

小技巧:若是感受「刪除」兩個字太呆板,能夠自定義這個按鈕的顯示文字的,須要實現UITableViewDelegate的以下方法:
  1. - (NSString *)tableViewUITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPathNSIndexPath *)indexPath NS_AVAILABLE_IOS(3_0);
相關文章
相關標籤/搜索