新しい辞書を追加することなく、UITextCheckerを正確に動作させることができます。
私は速い(正確ではない)ためには最初のステップが必要なので、私は2段階プロセスを使用します。正確なチェックであるステップ2だけが必要です。これは、UITextCheckerのcompletionsForPartialWordRange関数を使用することに注意してください。これは、MisspelledWord関数よりも正確です。
//ステップ1:文字の組み合わせがスペルチェックに合格したかどうかをすぐに確認します。これは正確ではありませんが、非常に速いので、たくさんの文字の組み合わせを素早く除外することができます(強引なアプローチ)。
UITextChecker *checker;
NSString *wordToCheck = @"whatever"; // The combination of letters you wish to check
// Set the range to the length of the word
NSRange range = NSMakeRange(0, wordToCheck.length - 1);
NSRange misspelledRange = [checker rangeOfMisspelledWordInString:wordToCheck range: range startingAt:0 wrap:NO language: @"en_US"];
BOOL isRealWord = misspelledRange.location == NSNotFound;
// Call step two, to confirm that this is a real word
if (isRealWord) {
isRealWord = [self isRealWordOK:wordToCheck];
}
return isRealWord; // if true then we found a real word, if not move to next combination of letters
//ステップ2:単語が実際の単語であることを確認するための余分なチェック。実際の単語がある場合はtrueを返します。
-(BOOL)isRealWordOK:(NSString *)wordToCheck {
// we dont want to use any words that the lexicon has learned.
if ([UITextChecker hasLearnedWord:wordToCheck]) {
return NO;
}
// now we are going to use the word completion function to see if this word really exists, by removing the final letter and then asking auto complete to complete the word, then look through all the results and if its not found then its not a real word. Note the auto complete is very acurate unlike the spell checker.
NSRange range = NSMakeRange(0, wordToCheck.length - 1);
NSArray *guesses = [checker completionsForPartialWordRange:range inString:wordToCheck language:@"en_US"];
// confirm that the word is found in the auto-complete list
for (NSString *guess in guesses) {
if ([guess isEqualToString:wordToCheck]) {
// we found the word in the auto complete list so it's real :-)
return YES;
}
}
// if we get to here then it's not a real word :-(
NSLog(@"Word not found in second dictionary check:%@",wordToCheck);
return NO;
}
なぜn NSSpellCheckerを使用しないのですか? – Goz
@Wolfgang:NSObjectのようなNSString .... – brain
@Wolfgang:NSObject、NSNumber、NSString、NSPredicate、NSFetchedControllerなどのNSプレフィックスクラスがiOSで利用可能です。 – rckoenes