我正在動態創建表格視圖單元格。 我的問題是,該單元格的textLabel
不可見。IOS 7表格單元格不顯示
的代碼是工作在iOS 5和iOS 6,但不工作在iOS 7:
cell.datelbl.text = [dateCalcuArray objectAtIndex:indexPath.row];
cell.datelbl.textColor = [UIColor whiteColor];
我正在動態創建表格視圖單元格。 我的問題是,該單元格的textLabel
不可見。IOS 7表格單元格不顯示
的代碼是工作在iOS 5和iOS 6,但不工作在iOS 7:
cell.datelbl.text = [dateCalcuArray objectAtIndex:indexPath.row];
cell.datelbl.textColor = [UIColor whiteColor];
如果你想設置的textLabel
文本,你應該設置其屬性text
。看起來你錯誤地設置了自定義UITableViewCell子類屬性datelbl
的文本和顏色,而不是textLabel
。
然而,如果你想設置datelbl
屬性的文本,確保:
什麼是代碼片段...? – holex
你可以設置textcolor爲白色以外的東西嗎?然後看看它是否仍然失蹤。 – TreeTree
不顯示任何顏色 – umer