标签: swift
我收到此错误,无法在控制台中强制转换UIButton类型的值。问题是这不是UIButton,而是标签
有人会知道为什么吗?
答案 0 :(得分:0)
您的ViewWithTag(2)似乎不是label。检查您是否在button内以编程方式添加了cell并设置了标记Value 2。
ViewWithTag(2)
label
button
cell
Value 2
如果可能的话,还要尽量避免强行打开以防止崩溃
guard let questionLabel = cell.viewWithTag(2) as? UILabel else {return} questionLabel.text = "yourValue