アプリにフォースクエアを実装する方法.サンプルアプリをいくつか試しましたが、正確に行う方法がわかりません.誰かが私を案内してくれます.
ありがとう....
以下は、github で提供されているサンプル アプリケーションです。
https://github.com/Constantine-Fry/Foursquare-API-v2/tree/master/Foursquare2-iOS
このプロジェクトをダウンロードし、Foursquare2 フォルダーをプロジェクトと json パーサーにドラッグします。
これは私が近くの場所に行くためにしたことです..
[Foursquare2 searchVenuesNearByLatitude:lat_String
longitude:log_String
accuracyLL:nil
altitude:nil
accuracyAlt:nil
query:searchString
limit:@"10"
intent:@"browse"
categoryId:nil
Radius:radius
callback:^(BOOL success,id result){
if (success) {
// NSLog(@"Result : %@",result);
[self parseplacesForSearch:result];
}
else {
UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"Message"
message:@"Sorry!! their is no places around your location"
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil ];
[alertView show];
[alertView release];
}
}];