How to delete data in Mobile Services - iOS / iPhone (Windows Azure)
How to delete data in Mobile Services - iOS / iPhone (Windows Azure) สรุปวิธีการลบ Delete ข้อมูลบน Table ของ Mobile Services บน Windows Azure ด้วย iOS / iPhone แบบสั้น ๆ ง่าย ๆ
-(void)deleteItem:(NSDictionary *)item completion:(QSCompletionBlock)completion
{
// delete the item in the TodoItem table and remove from the items array
[self.table delete:item completion:^(NSNumber *itemId, NSError *error)
{
[self logErrorIfNotNil:error];
// Let the caller know that we have finished
completion();
}];
}