Word-Scramble

Word scramble game uses UITableVIew with refreshing specific rows in stead of whole view. I also used UIAlertController with user input rather than just showing alerts. The hard part was NSRange, swift string and closure.

Logic

My scramble game uses a text file “start.txt” which contains over 12000 words to work with. A random string is used as title and user is asked to guess the possible words out of it. This application checks the filters such as if the word is real, possible and original. If the word satisfies all three checks then it can be added to the table list with the help of text input embedded with UIAlertController. If any of the three checks fails then it shows the error accordingly. User can also refresh to get a new word whenever the user like.

Screenshot 2020-08-12 at 1 18 28 PM Screenshot 2020-08-12 at 1 18 13 PM Screenshot 2020-08-12 at 1 17 52 PM Screenshot 2020-08-12 at 1 20 43 PM