2
A
回答
2
以下是提供在GitHub上的示例應用程序...
2
https://github.com/Constantine-Fry/Foursquare-API-v2/tree/master/Foursquare2-iOS
下載這個項目拖在你的項目和json解析器中的Foursquare2文件夾。
這是我做的地方,以獲得接近..
[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];
}
}];
+0
Surender喜Rathore, 謝謝....我想執行checkin並將它張貼在facebook和twitter上 – Ann
+0
有一種方法在Foursquare.m文件中添加簽入,方法名稱是createCheckinAtVenue ... –
相關問題
- 1. 在非Web應用程序中的Foursquare
- 2. 從我的應用程序打開Foursquare應用程序
- 3. 如何在我的應用程序中使用foursquare API
- 4. Foursquare應用程序庫
- 5. 我如何在我的應用程序中實現雲計算?
- 6. 我想在我的iPhone應用程序中實現OCR
- 7. 我想在我的導軌應用程序中實現配樂
- 8. 如何在我的android應用程序中實現應用程序內購買?
- 9. 如何在我的應用程序中實現代碼在iphone
- 10. Foursquare API v2,身份驗證和我現在破碎的應用程序
- 11. 我應該在應用程序委託中實現dealloc嗎?
- 12. 在應用程序中實現iPhone應用程序
- 13. 在iphone應用程序中實現應用程序細化
- 14. 如何實現應用程序在我的應用
- 15. 在ASP.Net應用程序中實現HPKP
- 16. 在應用程序中實現聊天?
- 17. 在Java應用程序中實現Growl
- 18. 在Web應用程序中實現OAuth2.0
- 19. 在iOS應用程序中實現sqlite3_busy_timeout()
- 20. 在Android應用程序中實現Leadbolt
- 21. 在我的應用程序中實現CWAC-camera2的camaraview
- 22. 關於在我的應用程序中實現QThread的問題?
- 23. Angularjs Modal窗口在我的應用程序中的實現
- 24. 如何從我的Android手機應用程序調用Foursquare應用程序?
- 25. 如何在Foursquare上註冊我的應用程序
- 26. 如何在我的應用程序中實現離線閱讀
- 27. 如何在我的web應用程序中實現OpenID?
- 28. 如何在我的應用程序中實現EGOPhotoViewer?
- 29. 在我的應用程序中實現定時器
- 30. 在我的應用程序中需要幫助實現接口
我試過....我能得到附近的vebus,但我不能用這個樣本籤.... – Ann