在我的应用程序中实现Foursquare

时间:2012-05-17 10:25:41

标签: iphone

如何在我的应用程序中实现foursquare。我尝试了一些示例应用程序,但我不知道该怎么做。任何人都可以指导我。

...谢谢

2 个答案:

答案 0 :(得分:2)

以下是github上提供的示例应用程序......

  1. anoopr / core-data-talk
  2. Constantine-Fry / Foursquare-API-v2

答案 1 :(得分: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];
                                       }

                                   }];