当前位置: 代码迷 >> Iphone >> iphone中的Foursquare集成的兑现
  详细解决方案

iphone中的Foursquare集成的兑现

热度:79   发布时间:2016-04-25 06:04:38.0
iphone中的Foursquare集成的实现

原问题来自于CSDN问答频道,更多解决方案见:http://ask.csdn.net/questions/1404

原问题描述:

需要实现iphone中关于Foursquare集成,但是不知道从何入手,请帮忙给一些建议和指点。谢谢

解决方案:

这里是foursquare api 链接

Foursquare integration 示例链接

更多代码:Foursquare integration

- (void)viewDidLoad{    [super viewDidLoad];    self.title = @"Foursquare";    //check the authentication    if ([Foursquare2 isNeedToAuthorize]) {       //If needed show the webview         webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, 0, 320, 480)];        NSString *url = [NSString stringWithFormat:@"https://foursquare.com/oauth2/authenticate?display=touch&client_id=%@&response_type=code&redirect_uri=%@",OAUTH_KEY,REDIRECT_URL];        NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:url]];        [webView loadRequest:request];        [webView setDelegate:self];        [self.view addSubview:webView];        [webView release];        mTableView.hidden = YES;    }else{        //Show your view        mTableView.hidden = NO;        [Foursquare2 searchVenuesNearByLatitude:@"40.763" longitude:@"-73.990" accuracyLL:nil altitude:nil accuracyAlt:nil query:@"" limit:@"15" intent:@"" callback:^(BOOL success, id result){            if (success) {                tableData = [[FoursquareParser parseSearchVenuesResultsDictionary:(NSDictionary*)result] retain];                [mTableView reloadData];            }        }];    }}



1楼joio321昨天 11:19
晕晕晕看了跟没看一样。。。不懂 n这是我的能了问题
Re: CSDN_Ask昨天 10:44
回复joio321n多看看就懂了,欢迎到http://ask.csdn.net和大家一起讨论
  相关解决方案