Did anyone manage to get the RegexKit working for an iPhone application?
I tried to use it but I always get this error:
dyld: Library not loaded: @executable_path/../Frameworks/RegexKit.framework/Versions/A/RegexKit
Referenced from: /Users/Reilly/Library/Application Support/iPhone Simulator/User/Applications/7E057EA8-5CD1-465B-8102-38A53A9B5F5B/Drowser.app/Drowser
Reason: image not found
anyone knows how to fix the problem. I followed the documentation.
I really need the full RegexKit because of this method: (BOOL)isMatchedByAnyRegexInArray:(NSArray *)regexArray
using RegexKit lite is too slow if I want to do something like this:
for (NSString * aString in mainDelegate.whiteListArray) {
if (![urlString isMatchedByRegex:aString]) {
any suggestions please?
thanks in advance
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Did anyone manage to get the RegexKit working for an iPhone application?
I tried to use it but I always get this error:
dyld: Library not loaded: @executable_path/../Frameworks/RegexKit.framework/Versions/A/RegexKit
Referenced from: /Users/Reilly/Library/Application Support/iPhone Simulator/User/Applications/7E057EA8-5CD1-465B-8102-38A53A9B5F5B/Drowser.app/Drowser
Reason: image not found
anyone knows how to fix the problem. I followed the documentation.
I really need the full RegexKit because of this method: (BOOL)isMatchedByAnyRegexInArray:(NSArray *)regexArray
using RegexKit lite is too slow if I want to do something like this:
for (NSString * aString in mainDelegate.whiteListArray) {
if (![urlString isMatchedByRegex:aString]) {
any suggestions please?
thanks in advance