The -isFileReferenceURL method -isFileReferenceURL defined in the NSURL class, but I can’t understand what this method is. I thought this determines whether the URL indicates the actual file or not, but that is not the case. It returns NO even if the file exists. The manual says that
isFileReferenceURL Returns whether the URL is a file reference URL. - (BOOL)isFileReferenceURL Return Value YES if the URL is a file reference URL; otherwise, NO. Availability Available in iOS 5.0 and later. (Symbol is present in iOS 4, but performs no operation.) Declared In NSURL.h
What is this method? What is the URL of the file link? When does this method return YES ?
Eonil source share