我目前正在访问包含id
和text
列的azure移动服务器数据库。如何选择text
列而不是选择所有列。
- (IBAction)nextJokeButton:(id)sender
{
MSClient *client = [(AppDelegate *) [[UIApplication sharedApplication] delegate] client];
MSTable *itemTable = [client tableWithName:@"mytable"];
[itemTable readWithCompletion:^(NSArray *items, NSInteger totalCount, NSError *error) {
if (error) {
NSLog(@"Error: %@", error);
} else {
NSString *str1 = items[3];
NSLog(@"%@", str1);
}
}];
}
目前记录
2014-05-06 11:32:11.349 project[9521:a0b] {
id = "F6098E3B-A7ED-4AAA-BA8F-11A879551057";
text = "United Kingdom";
}
我只需要字符串等于文本部分。 谢谢! p.s这是我发给stackoverflow的第一篇文章,如果我没有添加足够的细节请求更多。
答案 0 :(得分:1)
试试这个
NSString *str1 = [items[3] objectForKey:@"text"];
NSLog(@"%@", str1);