前提・実現したいこと
Swift初心者です。
下記サイトを参考にアプリを作成していました。
画面遷移の処理で、
画面遷移自体は成功してたのですが、詳細画面を表示するところでつまづいています。
https://fukatsu.tech/transition-code
発生している問題・エラーメッセージ
Will attempt to recover by breaking constraint <NSLayoutConstraint:0x600001182b70 H:[UIImageView:0x7fe71d516ce0]-(23)-[UILabel:0x7fe71d516eb0'miffy_'] (active)> Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger. The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKitCore/UIView.h> may also be helpful. Could not cast value of type 'UIViewController' (0x7fff897a4298) to 'HelloWorld.ArticleDetailViewController' (0x109501938). 2020-05-01 07:28:40.746585+0900 HelloWorld[3109:370704] Could not cast value of type 'UIViewController' (0x7fff897a4298) to 'HelloWorld.ArticleDetailViewController' (0x109501938). (lldb)
ソース
swift
1クラス名:ArticleDetailViewController.swift 2 3 4import UIKit 5 6class ArticleDetailViewController: UIViewController { 7 8 @IBOutlet weak var bodyLabel: UILabel! 9 10 var article: Article? 11 12 override func viewDidLoad() { 13 super.viewDidLoad() 14 bodyLabel.text = article?.body 15 } 16}
swift
1クラス名: ViewController.swift 2 3extension ViewController: UITableViewDelegate { 4func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { 5 let vc = UIStoryboard(name: "ArticleDetail", bundle: nil).instantiateInitialViewController()! as! ArticleDetailViewController 6 vc.article = articles[indexPath.row] 7 navigationController?.pushViewController(vc, animated: true) 8}
試したこと
類似の事例で、storyBoadにclassやmoduleの紐付け漏れが原因とあったので、
確認しましたが、ArticleDetail.storyBoardにはArticleDetailViewControllerが正常に紐づけられていました。
ソースはサイト上のものをコピペしてみたので、問題ないと思われます。
またlabelの紐付けも確認したのですが、
「Referencing Outlets」に
bodylabel と ArticleDetailViewControllerが紐づけられており、
問題ないように見えます。
補足情報(FW/ツールのバージョンなど)
swift5.2を使用しています。
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。