[Regexkit-discussion] CFPropertyList Error
Status: Beta
Brought to you by:
jengelhart
From: Jonathan D. <j.p...@gm...> - 2008-03-06 12:51:15
|
Hi All, I added a working regex to my app to search through a string, but noticed that I was getting a log like this: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary. This doesn't cause a crash but happens with any regex I try, even the simplest test case below shows up this error: - (void)findMatches; { NSString *body = @"section section"; NSString *regex = @"section"; NSRange range = [body rangeOfRegex:regex]; } I've added the #import <RegexKit/RegexKit.h> to my .pch file. Is this a known error? Or even a problem? Thanks, Jon |