views:

81

answers:

1

I have an NSURL.
It is file://localhost/Users/Me/File.xml

I want an NSString that is /Users/Me/File.xml

Is there some nice function I can use to do this?

+10  A: 

NSURL path method sounds like it does what you want.

Pavel Minaev
…generally preceded by `-isFileURL`.
Ahruman