質問編集履歴

1

合ってるかわかりませんが入れる値をIntにしました

2022/03/19 09:21

投稿

Soul3725
Soul3725

スコア21

test CHANGED
File without changes
test CHANGED
@@ -56,7 +56,7 @@
56
56
 
57
57
  let alert = UIAlertController(title: "任意の値を入力してください", message: "", preferredStyle: .alert)
58
58
  let okAction = UIAlertAction(title: "OK", style: .default) { (action:UIAlertAction!) in
59
- if let firstSetTimer = alert.textFields?[0].text{
59
+ if let firstSetTimer:Int = Int((alert.textFields?[0].text)!){
60
60
  print(firstSetTimer)
61
61
  UserDefaults.standard.set(firstSetTimer, forKey: "setTimer")
62
62
  }