2015-12-08 80 views
-1

刪除我有一個Web服務,從我的分貝 http://url.com/delete/recordID怎麼辦我刷卡從Web服務

刪除記錄如何將我去有關實現滑動刪除的實現代碼如下細胞來調用這個網址。

我知道它在

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { 

    if (editingStyle == UITableViewCellEditingStyleDelete) { 

    } 
} 

做,但我不知道怎麼寫呢

+0

你如何填充你的表,以及一個單元格包含的數據? – Stefan

回答

1

我猜你有一些數據陣列。我建議你使用AFNetworking框架與服務器通信。

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { 

     if (editingStyle == UITableViewCellEditingStyleDelete) { 
     Record *record = self.recordsArray[indexPath.row]; 
     AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; 


       [manager DELETE:[NSString stringWithFormat:@"http://url.com/delete/%@", record.recordId] parameters:nil success:^(AFHTTPRequestOperation * operation, id responseObject) { 
      } 
    } failure:^(AFHTTPRequestOperation *operation, NSError *error) { 
         NSLog(@"Error: %@", error); 
        }]; 
     }