如何調用另一種方法的參數方法。客觀c調用另一種方法的參數
我在目標c類有問題。 我的代碼是
- (void)locationUpdate:(CLLocation *)location {
location.coordinate.longitude];
googleUrl=[[NSString alloc]initWithFormat:@"https://maps.googleapis.com/maps/api/place /search/xml?location=%f,%f&radius=500&name=the%20money&sensor=false& key=AIzaSyCcC9pmri9XGOgyhjoHQq37cmcfgsfb6bBZe80",location.coordinate.latitude,location.coordinate.longitude];
}
-(void)ParseXML_of_Google_PlacesAPI {
NSURL *googlePlacesURL = [NSURL URLWithString:googleUrl];
NSData *xmlData = [NSData dataWithContentsOfURL:googlePlacesURL];
}
我想把googleUrl值parseXML方法
以'get ...'開頭的方法名通常帶有一個指針參數,用於存儲結果,參見參考資料。 [' - [NSData getBytes:range:]'](http://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSData_Class/Reference/Reference.html#//apple_ref/doc/UID/20000172-CIACCFDG)。 – gcbrueckmann
謝謝@gcbrueckmann,這是我以前不知道的。將更新我的代碼! – Guven