我正在創建一個由4個單詞組成的炒文字遊戲,因此有4個文本框。如何將UITextField的文本與字符串進行比較?
當用戶輸入的字符串是正確的單詞的長度時,我想檢查該序列是否等於實際單詞。
If it is, I want to clear the text field and return "YES!".
If it is not, I want to clear the text field completely so the user can try again.
舉例:如果實際的詞是「邏輯」和用戶輸入「GOLIC」作爲他的猜測正確的話,我想文本字段完全清除,因此用戶可以再次嘗試。
If the actual word is "LOGIC" and the user enters "LOGIC", I want the text field to clear and display the string "YES!"
任何幫助非常感謝!