访问数组元素并获取ios

时间:2015-09-08 07:40:11

标签: ios objective-c

我使用数组从SQL server使用AFHTTPRequestDCKeyValueObjectMapping获取数据来解析我得到的JSON数据并将其作为数组

NSArray *chSpot = [parser parseArray:responseObject];

我有名为LocationLatLocationLong的元素我想访问它们并打印出来

1 个答案:

答案 0 :(得分:1)

我看到chSpot有3个对象,不知道你想得到什么(全部或者一个)。无论如何,你可以通过以下方式得到指数0(第一点)的纬度,长点:

DBObject textSearchCommand = new BasicDBObject();
textSearchCommand.put("text", "profile");
textSearchCommand.put("search", pattern);
textSearchCommand.put("limit", searchLimit);
textSearchCommand.put("filter",new BasicDBObject("personInfo", new BasicDBObject("$ne",null)));
CommandResult commandResult = mongoTemplate.executeCommand(textSearchCommand);
BasicDBList results = (BasicDBList) commandResult.get("results");