前提・実現したいこと
TableVIewにCustomCellを作成しています。
labelをOutletで接続し取得する場合に、下記のエラーが発生するのですが、理由が分からないので、教えていただきたいです。
一般的にはviewWithTagで要素を取得するかと思いますが、なぜOutletで接続したものは使用できないのかが気になりました。
発生している問題・エラーメッセージ
Value of type 'UITableViewCell' has no member 'label'
該当のソースコード
Swift
1import UIKit 2 3class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate { 4 @IBOutlet weak var label: UILabel! 5 6 override func viewDidLoad() { 7 super.viewDidLoad() 8 9 // Do any additional setup after loading the view. 10 } 11 12 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 13 10 14 } 15 16 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 17 let cell = tableView.dequeueReusableCell(withIdentifier: "cell")! 18 cell.label?.text = "(indexPath.row + 1)番目のセル" 19 return cell 20 }
あなたの回答
tips
プレビュー