iPhone上的谷歌任务

iPhone上的谷歌任务,iphone,Iphone,我已经使用谷歌认证API进行了认证。如何将谷歌任务值访问到表视图并继续 NSString *googleapi = [NSString stringWithString: @"https://maps.googleapis.com/maps/api/place/search/xml?location=34.0522222,-118.2427778&radius=500&types=bank&sensor=false&key=Your_API_Key"]; NSU

我已经使用谷歌认证API进行了认证。如何将谷歌任务值访问到表视图并继续

NSString *googleapi = [NSString stringWithString: @"https://maps.googleapis.com/maps/api/place/search/xml?location=34.0522222,-118.2427778&radius=500&types=bank&sensor=false&key=Your_API_Key"];

NSURL *googlePlacesURL = [NSURL URLWithString:googleapi];
NSData *xmlData = [NSData dataWithContentsOfURL:googlePlacesURL];
编辑添加


希望,这将帮助您…

它没有身份验证。我的应用程序是这样一种方式,无论我更改了什么,它都应该反映在Google帐户任务上。您的API密钥是一种身份验证类型。没有它,任何人都无法访问数据。希望在google中反映什么类型的更改…?其他用户也可以使用他们的google帐户输入并处理该应用程序,并且应该在google帐户上反映。在本例中,我们不需要登录。请检查gtask android应用程序的参考,并回答我。请帮助我。我必须在下周提交此应用程序!!
NSString *usergoogleapi = [NSString stringWithString:@"User_API_Key"];// change this api according to user.
NSString *googleapi = [NSString stringWithFormat: @"https://maps.googleapis.com/maps/api/place/search/xml?location=34.0522222,-118.2427778&radius=500&types=bank&sensor=false&key=%@",usergoogleapi];