regex - What would cause RegexKit to spawn a "Requested configuration not supported" error? -


i have framework installed per instructions on website , regexkit.h imported appcontroller header file. i'm using simple method defined in appcontroller.m make sure working.

- (ibaction)test:(id)sender {     nsstring *str = @"torpedos: 0 1 1 0 1 lasers: 150 150";     nsstring *rgx = @"torpedos: (([0-1x]) ){3,8}";     nsstring *torpstr = null;     [str getcaptureswithregexandreferences:rgx, @"$0", &torpstr, nil];     nslog(@"%@", torpstr); } 

i error in console when click test button:

-[nsmaptable initwithkeypointerfunctions:valuepointerfunctions:capacity:]
requested configuration not supported.

i've spent half day searching net , looking through apple dev docs, , i've found notation in apple docs indicating entries must explicitly removed if aren't using garbage collection (which am). and...

when configuring map tables, note options listed in “nsmaptableoptions” guarantee rest of api work correctly—including copying, archiving, , fast enumeration. while other nspointerfunctions options used configurations, such hold arbitrary pointers, not combinations of options valid. combinations map table may not work correctly, or may not initialized correctly.

which sounds going on. have no clue begin looking.

so far found out how remove first warning. getting error regarding missing semi colon.

"fpropertylistcreatefromxmldata(): old-style plist parser: missing semicolon in dictionary."

http://cross-the-sea.blogspot.com/2009/07/about-alert-message-of.html

discusses how remove error


Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -