2014-01-13 73 views
0

UITableView具有「clipsToBound」標誌,如果標誌設置爲「No」,則會顯示以下內容(圖1),但當滾動表格時外觀會變爲以下內容 - 圖2. 有沒有什麼方法可以設置clipsToBounds爲單元格是,所以這不適用於標題? (結果應該如圖3所示)。UITableView:如何只爲單元格設置clipsToBounds爲Yes?

http://monosnap.com/image/OkeTGPdQcfnQj12ReIzHGNlja

+0

是圓形的A,B在節頭或他們是在細胞? – santhu

回答

1

把所有的意見到一個視圖,然後把這個觀點到UITableViewCell,然後設置clipsToBound到了這一觀點。

也嘗試將clipsToBound設置爲UITableViewContentView

0

如果在 - (id)initWithStyle:(UITableCellStyle)風格中使用自定義單元格設置clipToBounds = YES重用標識符:(NSString *)reuseIdentifier。

如果使用默認的單元格請執行下列操作

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 

    UITableCell *cell = [tableView dequeueReusableCellWithIdentifier:DefaultTableCellIdentifier forIndexPath:indexPath]; 
    cell.clipToBounds = YES; 
相關問題