I want to parse the location of my Documents Directory to NSUrl
from NSString
I have.
when my console NSLog(stringURL)
i get: "/var/mobile/Applications/2B35D06D-6E4A-40F2-833E-28463A946834/Library/Application Support/MyAppDirectory" as an output.
but when I do
NSURL* url = [NSURL URLWithString:stringUrl];
and NSLog(url) i get (null) as an output.
WHat am I doing wrong here?
From the apple documentation "An NSURL object initialized with URLString. If the URL string was malformed or nil, returns nil." Your stringURL isn't a correct formed url. For reference: https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSURL_Class/Reference/Reference.html#//apple_ref/occ/clm/NSURL/URLWithString:
What you actually want to use is:
fileURLWithPath: isDirectory:
instead.Use fileURLWithPath instead (since you are passing a file path):
How about: