所以我必須直接從筆尖文件加載細胞:selectedBackgroundView在自定義的UITableViewCell
NSArray *cellContents = [[NSBundle mainBundle] loadNibNamed:@"ResultsTableViewCell" owner:self options:nil];
cell = [cellContents objectAtIndex:0];
在筆尖文件,有一個UITableViewCell和兩個UIViews,每個都有自己的子視圖。 Strucuture:
-TableViewCell
Label 1
Label 2
-UIView A
UIView a
UIView b
UIImageView c
UIImageView d
-UIView B
UIView e
UIView f
UIImageView g
UIImageView h
所以UIView的A被連接到backgroundView屬性爲的UITableViewCell,UIView的B連接到selectedBackgroundView屬性。
問題: 因此,爲什麼A顯示了良好的細胞作爲它的所有子視圖的背景,並且B中的UIImageViews工作正常,但B中的UIViews並不顯示,但是我改變了它?謝謝!
我有這個確切的問題。你有沒有找到解決方案? – jimmyg