因此,在REST API中,我会像在官方教程中那样:

curl -X GET \
-H "QuickBlox-REST-API-Version: 0.1.0" \
-H "QB-Token: cc3598167f68a8e95b50a4fc6607cd3a8e7f043b" \
http://api.quickblox.com/geodata/find.xml?radius=100&current_position=90%3B90

如何使用iOS SDK做类似的事情?

最佳答案

当然

QBLGeoDataGetRequest *getRequest = [[QBLGeoDataGetRequest alloc] init];
getRequest.radius = 100;
getRequest.currentPosition = CLLocationCoordinate2DMake(23.55, -12.66);

[QBLocation geoDataWithRequest:getRequest delegate:self];

关于ios - 适用于iOS的Quickblox:如何仅提取100公里范围内的位置?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16795456/

10-12 02:31