私のVCにはUITableView
と1つのUIlabel
があります。私はすべてのことをコードで行いましたが、Storyboard
には何もありません。UITableView代理人は呼び出されません
問題:
私はどの
UITableViewDataSource and UITableViewDelegate
が呼び出されていない、その後UITable
をリロードしなかった場合。が私の下のコードで行ったように
UITable
をリロードした場合、呼び出されません。
私は以下のコード作業を行っています。
import UIKit
protocol DataVCProtocol
{
func addNewVC(Index : Int)
}
class DataVC: UIViewController, UITableViewDataSource, UITableViewDelegate {
var delegate:DataVCProtocol?
var tblData : UITableView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(true)
self.view.backgroundColor = UIColor.clear
self.tblData = UITableView(frame: CGRect(x: 0, y: 0, width: self.view.frame.size.width - 20 , height: UIScreen.main.bounds.size.height), style: UITableViewStyle.plain)
self.tblData.delegate = self
self.tblData.dataSource = self
self.tblData.register(TblDataCell.self, forCellReuseIdentifier: "dataCell")
self.tblData.showsHorizontalScrollIndicator = false
self.tblData.showsVerticalScrollIndicator = false
self.view.addSubview(self.tblData)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
// MARK:- TableView Datasource
// MARK:-
public func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat{
return 60
}
public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int{
return 10
}
public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell{
let dataCell : TblDataCell = tableView.dequeueReusableCell(withIdentifier: "dataCell") as! TblDataCell
dataCell.lblDataText.text = String("data cell #\(indexPath.row)")
return dataCell
}
public func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath){
delegate?.addNewVC(Index: indexPath.row)
}
}
あなたがテーブルビューにメモリをアロケーションする必要が
コントローラのビューに '' 'tableView'''をサブビューとして追加するのを忘れました。 – danypata
"public"キーワードを削除してからお試しください。 –
@danypata nice catch –