前提・実現したいこと
有識者の方々にご質問させていただきます。
Swift入門書でニュースリーダーアプリの課題を進めています。
制作段階の序盤で、ストーリーボードに「Table View Controller」を追加し、アトリビュートインスペクタの[Is Initial View Controller]などの設定もした状態です。
実機に接続しアプリを起動させてみろという流れで、起動させてみたいです。
発生している問題・エラーメッセージ
実機に繋いだ状態でも、シュミレーターの状態でもアプリ起動後に画面が真っ黒で、「時間」「充電」「キャリア」などしか表示されません。
エラーメッセージ 2019-11-23 20:21:17.982695+0900 newsReader[3237:159550] [WindowScene] There is no scene delegate set. A scene delegate class must be specified to use a main storyboard file. Message from debugger: Terminated due to signal 15
該当のソースコード
Swift
1import UIKit 2 3class ListViewController: UITableViewController { 4 5 //14-16行(表示するセルの数を3つにする処理を行う。) 6 override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 7 return 3 8 } 9 10 //19-22行(表示するセルを作成する処理を行う。) 11 override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 12 let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) 13 return cell 14 } 15} 16
試したこと
・シュミレータで実行する際Iphoneのバージョンを変更
・コードや手順が間違っていないかの3重確認
補足情報(FW/ツールのバージョンなど)
Xcode Version 11.2.1
使用実機 IPhone8 iOS 13.2.2
使用PC MacBook Air 13-inch, 2018
OS catalina 10.15.1
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。