我有一個有趣的問題。因爲我是Swift新手。在自定義單元格內添加自定義單元格
我已在TableView上創建並使用Storyboard添加了CUSTOM CELL。現在我想添加一個自定義單元格當第一自定義單元格 UIButton的點擊。
第二個自定義電池是使用XIB創建。現在當我註冊第二個單元格didload然後我看到空白tableview作爲第二個自定義單元格是空白。
我已經使用以下代碼:
在索引登記第二小區
self.tableView.registerNib(UINib(nibName: "customCell", bundle: nil), forCellReuseIdentifier: "customCell")
和細胞用於行
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! Cell
cell.nameLbl.text = "Hello hello Hello"
let Customcell = tableView.dequeueReusableCellWithIdentifier("customCell", forIndexPath: indexPath) as! customCell
if self.Selected == "YES" {
if self.selectedValue == indexPath.row {
return Customcell
}
return cell
}
else{
return cell
}
}
這裏Cell對象爲故事板細胞和Customcell爲XIB第二個定製單元。
請建議我該怎麼做。