I've been working with an application that creates an NSAttributedString
from an .rtf
file. I've been testing this app on iOS 7 with no problems. However, when I tested this app on iOS 6, I get this error:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSConcreteAttributedString initWithFileURL:options:documentAttributes:error:]: unrecognized selector sent to instance 0x9a77010'
Here's the code that I have:
NSError *error;
NSURL *stringURL = [[NSBundle mainBundle] URLForResource:@"Text" withExtension:@".rtf"];
NSAttributedString *myAttributedText = [[NSAttributedString alloc] initWithFileURL:stringURL options:nil documentAttributes:nil error:&error];
From the Apple Docs - NSAttributedString UIKit Additions Reference
initWithFileURL:options:documentAttributes:error:
is only available in iOS 7.0EDIT: As mentioned in comments
If you want to test whether a selector is available on an object or protocol (that inherits from NSObject) then you can check using
[object respondsToSelector:@selector()]
in this case