Clean up word loading logic
This commit is contained in:
parent
1fced44aee
commit
9d901144a4
|
@ -41,9 +41,11 @@ class ViewController: UITableViewController {
|
||||||
if let pathToStartWords = Bundle.main.path(forResource: "starting-words", ofType: "txt") {
|
if let pathToStartWords = Bundle.main.path(forResource: "starting-words", ofType: "txt") {
|
||||||
if let startWords = try? String(contentsOfFile: pathToStartWords) {
|
if let startWords = try? String(contentsOfFile: pathToStartWords) {
|
||||||
allWords = startWords.components(separatedBy: "\n")
|
allWords = startWords.components(separatedBy: "\n")
|
||||||
|
} else {
|
||||||
|
loadDefaultWords()
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
allWords = ["silkworm"]
|
loadDefaultWords()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue