我有一些子視圖UITableViewCell
。我需要這個子視圖顯示在單元格的頂部被選中,而不是。問題是這個單元格有selectedBackgroundView
,它在select上隱藏了我需要的子視圖。UITableViewCell allways顯示一些子視圖
UIView *bgView = [[UIView alloc] initWithFrame:cell.bounds];
bgView.backgroundColor = someColor;
cell.selectedBackgroundView = bgView;
我也試過cell.selectedBackgroundView addSubview:
,但它並沒有幫助。
所以問題是:如何添加一些子視圖到單元格,使其位於頂部,如果選擇單元格?
你在哪兒定義了你的子視圖,請編輯你的代碼。在bgView之後定義你的子視圖,然後嘗試相同的方法。 – 2013-07-08 12:20:07