初学者向けの教材でtextFieldに文字を入れてボタンを押すと予め用意した画像と入力した文字が反映されるというアプリを作っています。
ビルドして文字入力後にボタンを押すとアプリがクラッシュ?して以下のようなエラーが出ました。
最初、誤ってUIImageViewをIBOutletで接続してしまったのでストーリーボード上とコード上で接続を解除してから再度配置しなおしてビルドしたところこのようなエラーが出ました。
他におかしなことはしていなかったと思いますが自信がありません...
デバッグエリアにはこのように出ています。
Could not cast value of type 'UITableViewCellContentView' (0x1c2d2de40) to 'UIImageView' (0x1c2d3a410).
2021-06-08 00:28:35.538176+0900 swift6TableViewApp1[22027:1424702] Could not cast value of type 'UITableViewCellContentView' (0x1c2d2de40) to 'UIImageView' (0x1c2d3a410).
Could not cast value of type 'UITableViewCellContentView' (0x1c2d2de40) to 'UIImageView' (0x1c2d3a410).
CoreSimulator 757.5 - Device: iPhone 11 (F382BA17-0468-4318-8537-40C0C13AB586) - Runtime: iOS 14.5 (18E182) - DeviceType: iPhone 11
(lldb)
import UIKit class ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource{ @IBOutlet weak var textField: UITextField! @IBOutlet weak var tableView: UITableView! var textArray = [String]() var imageArray = ["1","2","3","4","5"] override func viewDidLoad() { super.viewDidLoad() tableView.delegate = self tableView.dataSource = self // Do any additional setup after loading the view. } func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return textArray.count } func numberOfSections(in tableView: UITableView) -> Int { return 1 } func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { return 560 } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) let imageView = cell.contentView.viewWithTag(1) as! UIImageView let label = cell.contentView.viewWithTag(2) as! UILabel label.text = textArray[indexPath.row] imageView.image = UIImage(named: imageArray[indexPath.row]) return cell }
初歩的なエラーですが解決法がわからないのでご教授いただけますと幸いです。
追記
タグが見つからずnilになっている(?)という海外の回答を見つけたので試しにタグの数字を1から2、2から3に変更してみたところ正常に動きました。
ただなぜタグの1だとエラーが出るのか上手く理解できていません。
よろしくおねがいします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/07 20:05