How to read data in Mobile Services - iOS / iPhone (Windows Azure)
How to read data in Mobile Services - iOS / iPhone (Windows Azure) สรุปวิธีการอ่านข้อมูลจาก Table ของ Mobile Services บน Windows Azure ด้วย iOS / iPhone แบบสั้น ๆ ง่าย ๆ
- (void)refreshDataOnSuccess:(QSCompletionBlock)completion
{
// Query the TodoItem table and update the items property with the results from the service
[self.table readWithCompletion:^(NSArray *results, NSInteger totalCount, NSError *error)
{
[self logErrorIfNotNil:error];
items = [results mutableCopy];
// Let the caller know that we finished
completion();
}];
}