我正在使用此代码:https ://github.com/valentinlietz/MySQL-Connect在目标 c 中使用 MySQL 查询。我使用 Count(*) 检查该行是否已经存在。
我将此代码用于 NSLog(); 这本词典。代码:
for(NSArray *row in response.responseDictionary){
NSLog(@"%@", row);
}
结果:
{
"" = "<null>";
"COUNT(*)" = 0;
}
但是当我使用[response.responseDictionary objectForKey:@"COUNT(*)"];
它返回发送到实例的未识别选择器时。
更新:
排:
Row: ( { "" = "<null>"; "COUNT()" = 0; } )
字典:
Row: { "" = "<null>"; "COUNT()" = 0; }