I'm having some trouble using the RegexKit.framework. I've properly integrated it into my project and I want to use the NSString
category methods to get an array of matches from a string. Though I have imported the the framework Xcode keeps complaining that "NSString
may not respond to '-stringByMatching:'". Do I miss something when working with categories that come from a framework?
The lines where I get the warnings are these:
NSArray *links = [websiteContent componentsMatchedByRegex:linkRegex];
NSMutableString *titleValue = [result stringByMatching:titleRegex];
Thanks
–f