你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS開發學習之#表視圖#(1)刪除行

iOS開發學習之#表視圖#(1)刪除行

編輯:IOS開發綜合

好久木有寫博客了,前面學習的表視圖其他內容都木有寫,今天就從刪除行開始吧,希望自己能夠堅持下去。。加油↖(^ω^)↗。。廢話少說吧,,,直接上代碼:


下面是刪除行的核心代碼:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
    if (editingStyle ==UITableViewCellEditingStyleDelete) {
        [aremoveObjectAtIndex:indexPath.row];
        [tvdeleteRowsAtIndexPaths:[NSArrayarrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
    }
}



當然要實現刪除行這一功能前,要實現遵守delegate協議:

@interface ViewController :UIViewController{
    IBOutletUITableView *tv;
    NSMutableArray *a;
    NSArray *b;
}



  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved