現在、ルーレットアプリを作成しているのですが、その設定画面のtableViewを作成中です。
cellを追加するときにエラーが発生してしまいます。
swift
1 2 3import UIKit 4 5 6class SettingViewController: UIViewController,UITableViewDelegate,UITableViewDataSource,UITextFieldDelegate { 7 8 9 10 @IBOutlet weak var tableView: UITableView! 11 @IBOutlet weak var plusButton: UIButton! 12 @IBOutlet weak var saveCheck: UILabel! 13 @IBOutlet weak var doneButton: UIButton! 14 @IBOutlet weak var rouletteTitle: UITextField! 15 @IBOutlet weak var checkBox: UIButton! 16 17 18 var cellCount = 0 19 var cellTitleBox = String() 20 var raitoBox = Int() 21 var checkCount = 0 22 23 24 override func viewDidLoad() { 25 super.viewDidLoad() 26 27 tableView.delegate = self 28 tableView.dataSource = self 29 rouletteTitle.delegate = self 30 31 tableView.frame = CGRect(x: 0, y: 0, width: view.frame.size.width, height: view.frame.size.height - (plusButton.frame.size.height + saveCheck.frame.size.height + doneButton.frame.size.height)) 32 33 } 34 35 override func viewWillAppear(_ animated: Bool) { 36 super.viewWillAppear(animated) 37 38 navigationController?.isNavigationBarHidden = false 39 } 40 41 42 //セルの数 43 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 44 return cellCount 45 } 46 47 //セクションの数 48 func numberOfSections(in tableView: UITableView) -> Int { 49 return 1 50 } 51 52 //セルの構築 53 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 54 55 let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) 56 let cellNumber = indexPath.row 57 //セル上のボタン(色) 58 let cellColor = cell.viewWithTag(1) as! UIButton 59 cellColor.tag = indexPath.row 60 cellColor.addTarget(self, action: #selector(pushButton(_:)), for: .touchUpInside) 61 62 if cellNumber % 10 == 0{ 63 cellColor.backgroundColor = UIColor(red: 255/255, green: 255/255, blue: 0/255, alpha: 1.0) 64 }else if cellNumber % 10 == 1{ 65 cellColor.backgroundColor = UIColor(red: 255/255, green: 190/255, blue: 0/255, alpha: 1.0) 66 }else if cellNumber % 10 == 2{ 67 cellColor.backgroundColor = UIColor(red: 255/255, green: 35/255, blue: 0/255, alpha: 1.0) 68 }else if cellNumber % 10 == 3{ 69 cellColor.backgroundColor = UIColor(red: 255/255, green: 0/255, blue: 255/255, alpha: 1.0) 70 }else if cellNumber % 10 == 4{ 71 cellColor.backgroundColor = UIColor(red: 200/255, green: 70/255, blue: 255/255, alpha: 1.0) 72 }else if cellNumber % 10 == 5{ 73 cellColor.backgroundColor = UIColor(red: 30/255, green: 120/255, blue: 255/255, alpha: 1.0) 74 }else if cellNumber % 10 == 6{ 75 cellColor.backgroundColor = UIColor(red: 80/255, green: 220/255, blue: 255/255, alpha: 1.0) 76 }else if cellNumber % 10 == 7{ 77 cellColor.backgroundColor = UIColor(red: 0/255, green: 255/255, blue: 0/255, alpha: 1.0) 78 }else if cellNumber % 10 == 8{ 79 cellColor.backgroundColor = UIColor(red: 40/255, green: 40/255, blue: 190/255, alpha: 1.0) 80 }else if cellNumber % 10 == 9{ 81 cellColor.backgroundColor = UIColor(red: 200/255, green: 200/255, blue: 200/255, alpha: 1.0) 82 } 83 84 85 //セル上のテキストフィールド(タイトル) 86 let cellTitle = cell.viewWithTag(2) as! UITextField 87 cellTitle.text = "タイトル" 88 cellTitleBox = cellTitle.text! 89 90 //セル上のテキストフィールド(比率) 91 let raitoInit = cell.viewWithTag(3) as! UITextField 92 raitoInit.keyboardType = UIKeyboardType.numberPad 93 raitoInit.text = "1" 94 95 let raito = cell.viewWithTag(4) as! UILabel 96 raito.text = "比率" 97 98 return cell 99 100 } 101 102 103 //セルの高さ 104 func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { 105 106 return view.frame.size.height/12 107 108 } 109 110 //cellColorボタンを押した時の処理 111 @objc private func pushButton(_ sender: UIButton) { 112 113 114 115 } 116 117 118 //項目を追加ボタン 119 @IBAction func cellPlus(_ sender: Any) { 120 121 cellCount += 1 122 123 tableView.reloadData() 124 125 } 126 127} 128
cellColor.tag = indexPath.row
このコードを追加してからエラーが発生するようになりました。
cellにtag付けしたbuttonが何行目のものかを判別したいのですが、エラーが発生してしまいます。
エラー内容はこうです。
Unexpectedly found nil while unwrapping an Optional value
いろいろいじってみてindexpath.rowの値が0の場合が2回あるようでそれが原因ではないかと考えているのですが、解決策がわかりません。アドバイスを頂けたら幸いです。
よろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/07 09:24