如何使用保存在我的项目中的本地xml?

时间:2011-07-29 16:10:43

标签: iphone objective-c xcode

嘿我使用的服务器在使用Maps时响应太慢,所以我决定将我的xml与应用程序一起发送并将其存储在应用程序中。我应该如何使用它?

谢谢,

2 个答案:

答案 0 :(得分:2)

使用[[NSBundle mainBundle] pathForResource:@"myfile" ofType:@"xml"]获取路径。从那里,您可以使用NSData,NSString或其他类来加载数据。

答案 1 :(得分:1)

您尚未正确实施pathForResource

NSString * string = [[NSBundle mainBundle] pathForResource"@"list-50.xml" ofType:@"xml"]; 

这是错误的。

所以它应该是

NSString * string = [[NSBundle mainBundle] pathForResource:@"list-50" ofType:@"xml"];