rangeOfMisspelledWordInString:range:startingAt:wrap:language:
如果未找到更正,则UITextChecker'返回 nil。但是我想知道是否有办法判断是否没有找到更正,因为 A. 它已经正确或 B. 当前单词不存在任何内容。
这就是我现在所拥有的:
if (!arrayOfPossibleCorrections || !arrayOfPossibleCorrections.count) {
//If nothing found bc it's already correct leave it alone
//Else dosomething
} else {
//Replace currentWord with correctWord
}