你好,欢迎来到电脑编程技巧与维护杂志社! 杂志社简介广告服务读者反馈编程社区  
合订本订阅
 
 
您的位置:技术专栏 / Web开发
iphone中的Foursquare集成的实现
 
原问题描述:
需要实现iphone中关于Foursquare集成,但是不知道从何入手,请帮忙给一些建议和指点。谢谢
解决方案:
这里是foursquare api 链接
Foursquare integration 示例链接
更多代码:Foursquare integration
[plain] 
- (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];  
  
            }  
        }];  
  
    }  
}  
 
  推荐精品文章

·2024年12月目录 
·2024年11月目录 
·2024年10月目录 
·2024年9月目录 
·2024年8月目录 
·2024年7月目录 
·2024年6月目录 
·2024年5月目录 
·2024年4月目录 
·2024年3月目录 
·2024年2月目录 
·2024年1月目录
·2023年12月目录
·2023年11月目录

  联系方式
TEL:010-82561037
Fax: 010-82561614
QQ: 100164630
Mail:gaojian@comprg.com.cn

  友情链接
 
Copyright 2001-2010, www.comprg.com.cn, All Rights Reserved
京ICP备14022230号-1,电话/传真:010-82561037 82561614 ,Mail:gaojian@comprg.com.cn
地址:北京市海淀区远大路20号宝蓝大厦E座704,邮编:100089