Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create a NSURL object out of a NSString, where I use -fileURLWithPath:(NSString ) I put my xml file as my source file, and name it event.xml. But NSString URL = @"event.xml"; NSURL a = [NSURL fileURLWithPath:URL];

but then my xmlparser return a connection failed error.

so what's the correct way to specify the path of a xml in the source file?

sorry about the formatting but I'm really in a rush

share|improve this question

1 Answer

That depends on the directory your XML file is in. If we are talking about a file in your app bundle, it is:

NSString *path = [[NSBundle mainBundle] pathForResource:@"event" ofType:@"xml"];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.