前提・実現したいこと
if indexPath.row == 0{
game.set(1, forKey: "mygame")
game.synchronize()
self.dismiss(animated: true, completion: nil)
}
の部分で1を押せばuserdefaultsに1が入るというコードなのですが、userdefaultsにgameという値がないというエラーが出てしまいます。どこがおかしいのかわかりません。どうすればいいのでしょうか。
発生している問題・エラーメッセージ
Value of type 'UserDefaults' has no member 'game'
該当のソースコード
swift
1import UIKit 2 3class game: UIViewController,UITableViewDelegate, UITableViewDataSource { 4 5 var data = ["1", "2", "3", "4", "5", "6"] 6 7 let game:UserDefaults = UserDefaults.standard 8 9 @IBOutlet weak var table: UITableView! 10 11 override func viewDidLoad() { 12 super.viewDidLoad() 13 table.delegate = self 14 table.dataSource = self 15 16 // Do any additional setup after loading the view. 17 } 18 19 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 20 return data.count 21 } 22 23 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 24 // セルの型を作る 25 let cell = UITableViewCell(style: UITableViewCellStyle.default, reuseIdentifier: "myCell") 26 // セルに表示するテキストを作る 27 cell.textLabel?.text = data[indexPath.row] 28 // セルをリターンする 29 return cell 30 } 31 32 //押した数字をUserdefaultsに保存する 33 func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath){ 34 if indexPath.row == 0{ 35 game.set(1, forKey: "mygame") 36 game.synchronize() 37 self.dismiss(animated: true, completion: nil) 38 }else if indexPath.row == 1{ 39 game.set(2, forKey: "mygame") 40 game.synchronize() 41 self.dismiss(animated: true, completion: nil) 42 }else if indexPath.row == 2{ 43 game.set(3, forKey: "mygame") 44 game.synchronize() 45 self.dismiss(animated: true, completion: nil) 46 }else if indexPath.row == 3{ 47 game.set(4, forKey: "mygame") 48 game.synchronize() 49 self.dismiss(animated: true, completion: nil) 50 }else if indexPath.row == 4{ 51 game.set(5, forKey: "mygame") 52 game.synchronize() 53 self.dismiss(animated: true, completion: nil) 54 }else if indexPath.row == 5{ 55 game.set(6, forKey: "mygame") 56 game.synchronize() 57 self.dismiss(animated: true, completion: nil) 58 } 59 60 } 61}
で、しつもんはなんでしょうか。
また、提示のコードはどういうもんでしょう
if indexPath.row == 0{
game.set(1, forKey: "mygame")
game.synchronize()
self.dismiss(animated: true, completion: nil)
}
の部分で1を押せばuserdefaultsに1が入るというコードなのですが、userdefaultsにgameという値がないというエラーが出てしまいます。
説明が足りなくてすみません。
それを質問に追記しましょう
エラーメッセージもそのまま提示してください。
そして、あなたの聞きたいことも質問に追記してください
追記しました
回答1件
あなたの回答
tips
プレビュー