I am trying to read the contents of an Asset URL directly without writing to the sandbox first. If i write to the sandbox I can read the contents using
NSFileHandle *readFile = [NSFileHandle fileHandleForReadingFromURL:file error:nil];
but i am unable read an Asset URL using the same method. Although that is the right behavior as i think NSFileHandle is meant for items which are present in the user's sandbox. I was wondering if there is a way to do read from the Asset URL.