我有文字指示碼其工作良好,快捷3,但遷移到SWIFT 4後,我得到了錯誤 let tagScheme = [NSLinguisticTagScheme.language]
let tagger = NSLinguisticTagger(tagSchemes: tagScheme, options: 0)
tagger.string = self.text
let la
我需要一個關鍵字(這是它的詞彙形式)與文本匹配,返回是否關鍵字匹配(就像一個搜索引擎) 例如 text: I want some apples
keyword: apple
result: matched
keyword: banana
result: not matched
這是我的方法,我總是空的標籤 - (BOOL)matchKeywordWithText:(NSString *
我的代碼在操場的工作,和Xcode中顯示沒有錯誤,但是當我編譯命令行上的文件時,它用錯誤 use of undeclared type NSLinguisticTagScheme
and String has no member 'tokenType'
繼承人的問題代碼回來。 let tagSchemes : [NSLinguisticTagScheme] = [ .tokenType]