取消特定UITableViewCell、UITableHeaderFooterView的分割線
1、在UITableViewCell上新增一個白色的UIIimageView,這樣能擋住分割線。
但是我們一般把控制元件新增到UITableViewCell的contentVIew中,如果這樣做,很難起到遮擋分割線的效果。
2、隱藏整個UITableView的分割線,然後自定義每個UITableViewCell的分割線或繪製出分割線。推薦繪製,程式碼示例如下:
- (void)drawRect:(CGRect)rect {
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextMoveToPoint(context, 0, 1);
CGContextAddLineToPoint(context, kSCREEN_WIDTH, 1);
CGContextSetStrokeColorWithColor(context, [[UIColor lightGrayColor] colorWithAlphaComponent:0.7].CGColor);
CGContextSetLineWidth(context, .4f);
CGContextStrokePath(context);
}
補充:不推薦重寫drawRect方法。
相關文章
- UITableViewCell分割線位置調整UIView
- WPS教程 怎麼取消列印預覽分割線
- 如何使用Tuxera NTFS for Mac禁用特定NTFS分割槽UXMac
- UITableViewCell的高度快取UIView快取
- iOS UITableViewCell的動畫效果(一)iOSUIView動畫
- OC UITableviewCell的優雅newUIView
- html 分割線HTML
- 線條分割,
- Android中的分割線Android
- RecyclerView - 新增不同的分割線View
- UITableViewCell重用機制UIView
- UITableViewCell 自動高度UIView
- Mac上如何忘記特定的無線網路?Mac
- 實現 UITableViewCell的批量刪除UIView
- RecyclerVieW自定義華麗的分割線View
- iOS-UITableViewCell的一些事iOSUIView
- iOS開發之有間距的UITableViewCelliOSUIView
- 清除UITableView底部多餘的分割線UIView
- 巢狀UITextView的UITableViewCell高度自適應巢狀UITextView
- iOS UITableViewCell允許滑動的處理iOSUIView
- win10如何取消輸入紅色下劃線_win10word取消紅色下劃線Win10
- tabview全屏顯示分割線View
- GridView實現分割線View
- 文字或模組分割豎線
- TPAMI 2024 | 自適應區域特定損失:提高影像分割效能
- iOS:改變UITableViewCell的選中背景色iOSUIView
- UITableViewCell使用自動佈局的“最佳實踐”UIView
- 如何釋放含有NSTimer的UITableViewCell(SubView)UIView
- 獲取UITableViewCell中UITextField的值方法總結UIView
- 實現 UITableViewCell 側滑操作列表UIView
- UITableViewCell自適應圖片高度UIView
- CSS去掉最後一行的分割線CSS
- matlab之cat:以特定維度連線矩陣Matlab矩陣
- IDEA 設定方法分割線Idea
- css分割線程式碼例項CSS線程
- 修改ListView 分割線Seperator lineView
- UITableViewCell含有WebView的自適應高度新解決方案UIWebView
- 自定義一個可以動態摺疊的UITAbleViewCellUIView