UITableView具有「clipsToBound」標誌,如果標誌設置爲「No」,則會顯示以下內容(圖1),但當滾動表格時外觀會變爲以下內容 - 圖2. 有沒有什麼方法可以設置clipsToBounds爲單元格是,所以這不適用於標題? (結果應該如圖3所示)。UITableView:如何只爲單元格設置clipsToBounds爲Yes?
http://monosnap.com/image/OkeTGPdQcfnQj12ReIzHGNlja
UITableView具有「clipsToBound」標誌,如果標誌設置爲「No」,則會顯示以下內容(圖1),但當滾動表格時外觀會變爲以下內容 - 圖2. 有沒有什麼方法可以設置clipsToBounds爲單元格是,所以這不適用於標題? (結果應該如圖3所示)。UITableView:如何只爲單元格設置clipsToBounds爲Yes?
http://monosnap.com/image/OkeTGPdQcfnQj12ReIzHGNlja
把所有的意見到一個視圖,然後把這個觀點到UITableViewCell
,然後設置clipsToBound
到了這一觀點。
也嘗試將clipsToBound
設置爲UITableView
的ContentView
。
如果在 - (id)initWithStyle:(UITableCellStyle)風格中使用自定義單元格設置clipToBounds = YES重用標識符:(NSString *)reuseIdentifier。
如果使用默認的單元格請執行下列操作
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableCell *cell = [tableView dequeueReusableCellWithIdentifier:DefaultTableCellIdentifier forIndexPath:indexPath];
cell.clipToBounds = YES;
是圓形的A,B在節頭或他們是在細胞? – santhu