我已经阅读并看过一些有关此主题的视频,但我无法使其发挥作用。我试图从xib而不是故事板中获取单元格。
这是我的ViewController(我有表视图)。
import UIKit
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
@IBOutlet var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 5
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! CellTableView
cell.test.text = "A";
return cell;
}
}
这是我的CellTableView(我有我的Cell的类):
import UIKit
class CellTableView: UITableViewCell {
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
@IBOutlet var teste: UILabel!
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}
我总是在StoryBoard的Table View中使用Table View Cell,但我现在想尝试一种XIB方法。
我在单元格XIB上添加了单元格标识符,使用dequeueReusableCell方法调用它。
我可能做错了什么?我试图将Table View的 dataSource 和委托排除在外,但我收到了一个错误(我认为这不是正确的步骤)。
答案 0 :(得分:44)
您需要注册您的笔尖对象。
在viewDidLoad()
:
let nib = UINib(nibName: "nameOfYourNibFile", bundle: nil)
tableView.register(nib, forCellReuseIdentifier: "yourIdentifier")
您还需要返回部分的数量:
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
答案 1 :(得分:2)
首先,您必须注册您的nib对象。
yourTable?.register(UINib(nibName: "yourCustomCell", bundle: nil), forCellReuseIdentifier: "cellIdentifier")