1.笨蛋型獲取
eg:在一個(gè)for循環(huán)里面,獲取子視圖label
for cell in tableView.visibleCells{
let label = cell.subViews.first?.subViews.first as! UILabel
if label.text!.isEmpty{
...
}
}
2.上進(jìn)型獲取
eg:在一個(gè)for循環(huán)里面,獲取子視圖label
for cell in tableView.visibleCells{
let label = cell.contentView.subViews[0] as! UILabel
if label.text!.isEmpty{
...
}
}
3.高效型獲取
前提是給子視圖指定一個(gè)tag數(shù)闺阱。
eg:在一個(gè)for循環(huán)里面,獲取子視圖uitextfield
for cell in tableView.visibleCells{
if let label = cell.viewWithTag(2) {
let lab = label as! UITextField
print(lab.text)
...
}
}
4.局限型獲取
前提是cell類為原始的類焚辅,而且cell的style為非custom
cell.textLabel?.text = "Grandre"
cell.detailTextLabel?.text = "ChinaSwift"
//獲取cell的imageView己儒,
cell.imageView?.image = UIImage(named: "Grandre")
cell.imageView?.layer.cornerRadius = 22
cell.imageView?.layer.masksToBounds = true
當(dāng)然,如果自定義類的時(shí)候巾腕,cell里面拖進(jìn)自己想要子視圖或控件面睛,再跟自定義類代碼綁定絮蒿。這樣就更容易獲取并控制了。
小弟拙見叁鉴,歡迎指正補(bǔ)充土涝,萬分感謝。