I created a string tokenizer as follows:
stringTokenizer = CFStringTokenizerCreate( NULL , (CFStringRef)str , CFRangeMake(0, [str length]) , kCFStringTokenizerUnitSentence , userLocale);
But how do I get these offers from the tokenizer now? CF String Programming Guide does not mention CFStringTokenizer or tokens (performed a full-text search in a PDF file).
cocoa nsstring cfstring
openfrog
source share