drupal-ios-sdk 介绍
drupal-ios-sdk 是 Drupal 专为 iOS 开发的 SDK
开发工具包,可在 iOS 上直接访问 Drupal 服务。
示例代码:
NSDictionary *params = [[NSDictionary alloc] initWithObjects:[NSArray arrayWithObjects:@"articles", nid, nil] forKeys:[NSArray arrayWithObjects:@"view_name", @"args", nil]]; [dioSView viewGet:params success:^(AFHTTPRequestOperation *operation, id responSEObject) { [self set_sites:responSEObject]; [self.tableView reloadData]; [self stopLoading]; } failure:^(AFHTTPRequestOperation *operation, NSError *error) { #warning We should let the user kNow rather than dumping a log [self stopLoading]; NSLog(@"Something went wrong: %@", [error localizedDescription]); }];