您好,登錄后才能下訂單哦!
獲取解析文件路徑
NSString * xmlPath = [[NSBundle mainBundle] pathForResource:@"Citys" ofType:@"xml"];
2.初始化xml字符串
NSString * xmlStr = [NSString stringWithContentsOfFile:xmlPath encoding:NSUTF8StringEncoding error:nil];
3.初始化一個GDataXMLDocument對象 , 因為解析時所有的內容都是從該對象中獲取,(所以需要將要解析的內容放入該對象)
self.document = [[GDataXMLDocument alloc]initWithXMLString:xmlStr options:0 error:nil];
self.city = [self.document nodesForXPath:@"http://name" error:nil];
self.latitude = [self.document nodesForXPath:@"http://latitude_e6" error:nil];
self.longitude = [self.document nodesForXPath:@"http://longitude_e6" error:nil];
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。