🎄teratailクリスマスプレゼントキャンペーン2024🎄』開催中!

\teratail特別グッズやAmazonギフトカード最大2,000円分が当たる!/

詳細はこちら
Xcode

Xcodeはソフトウェア開発のための、Appleの統合開発環境です。Mac OSXに付随するかたちで配布されています。

Swift

Swiftは、アップルのiOSおよびOS Xのためのプログラミング言語で、Objective-CやObjective-C++と共存することが意図されています

Q&A

1回答

1061閲覧

Use of undeclared type 'TimelineTableViewCell' について

monokuro08

総合スコア12

Xcode

Xcodeはソフトウェア開発のための、Appleの統合開発環境です。Mac OSXに付随するかたちで配布されています。

Swift

Swiftは、アップルのiOSおよびOS Xのためのプログラミング言語で、Objective-CやObjective-C++と共存することが意図されています

0グッド

0クリップ

投稿2019/11/16 12:31

前提・実現したいこと

エラーを解消したいです!

発生している問題・エラーメッセージ

Use of undeclared type 'TimelineTableViewCell' Use of undeclared type 'HeaderTableViewCell' Value of type 'HeaderTableViewCell' has no member 'timeline'

該当のソースコード

Swift

1import UIKit 2 3class FirstViewController: UIViewController, UITableViewDelegate, UITableViewDataSource { 4 5 @IBOutlet var tableView: UITableView! 6 7 8 private var timelines: [Timeline] = Timelines.allTimelines() { 9 didSet { 10 11 } 12 } 13 14 15 override func viewDidLoad() { 16 super.viewDidLoad() 17 tableView.estimatedRowHeight = 48 18 tableView.rowHeight = UITableView.automaticDimension 19 20 } 21 22 23 24 func numberOfSections(in tableView: UITableView) -> Int { 25 return timelines.count 26 27 } 28 29 30 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 31 return 1 32 } 33 34 35 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 36 let cell = tableView.dequeueReusableCell(withIdentifier: "Timeline") as! TimelineTableViewCell 37 return cell 38 } 39 40 41 func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? { 42 let cell = tableView.dequeueReusableCell(withIdentifier: "Header") as! HeaderTableViewCell 43 44 let timeline = timelines[section] 45 cell.timeline = timeline 46 return cell 47 } 48 49 50 51} 52 53

補足情報(FW/ツールのバージョンなど)

よくあるSNSのタイムライン画面を作っています

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

退会済みユーザー

退会済みユーザー

2019/11/16 13:46

TimelineTableViewCellとHeaderTableViewCellは用意されてますか?
monokuro08

2019/11/16 14:11

今、Mac再起動したら2つのエラーが消えました。
guest

回答1

0

HeaderTableViewCellクラスと、TimelineTableViewCell クラス、timeline変数を作る

Use of undeclared type 'TimelineTableViewCell' 
未宣言の型 'TimelineTableViewCell'の使用

Value of type 'HeaderTableViewCell' has no member 'timeline'
タイプ「HeaderTableViewCell」の値にメンバー「timeline」がありません

投稿2019/11/18 14:28

smapira

総合スコア33

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

まだベストアンサーが選ばれていません

会員登録して回答してみよう

アカウントをお持ちの方は

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.36%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問