swift初心者です。
下記のソースでエラーが出て、先に進めません。
###環境
swift4
macOS Big Sur 11.2.2
Xcode 12.4
##ソースコード
html
1import UIKit 2 3class TableViewCell: UITableViewCell { 4 5 @IBOutlet weak var checkBox1: CheckBox! 6 @IBOutlet weak var textView: UITextView! 7 8 override func awakeFromNib() { 9 super.awakeFromNib() 10 // Initialization code 11 } 12 13 override func setSelected(_ selected: Bool, animated: Bool) { 14 super.setSelected(selected, animated: animated) 15 16 // Configure the view for the selected state 17 } 18 override func numberOfSections(in tableView: UITableView) -> Int { 19 return 1 20 } 21 22 override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 23 return 1 24 } 25 26 override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 27 let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! TableViewCell 28 cell.textView.text = "文章" 29 30 // Configure the cell... 31 32 return cell 33 } 34}
##発生しているエラー
上のコードの3箇所に同じ「Method does not override any method from its superclass」というエラーが出ていて、その3箇所が
html
1override func numberOfSections(in tableView: UITableView) -> Int {
html
1override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
html
1override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 2
以上の箇所です。
色々調べてみたのですが、結局解決法がよくわからず、試した方法も特にありません。
わかる方、助けてください。よろしくお願いいたしします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/03/02 02:48 編集
2021/03/02 04:47
退会済みユーザー
2021/03/02 08:05 編集