私の質問は非常に簡単です、どのようにUITableViewでこのような区切りを実装する方法です。UITableView:区切りをカスタマイズする
私はこのコード
let screenWidth = UIScreen.mainScreen().bounds.width
let path = UIBezierPath(); path.lineWidth = 0.2
path.moveToPoint(CGPointMake(10, cell.height))
path.addLineToPoint(CGPointMake(screenWidth - 20, cell.height))
let shapeLayer:CAShapeLayer = CAShapeLayer()
shapeLayer.strokeColor = UIColor.blackColor().colorWithAlphaComponent(0.3).CGColor
shapeLayer.fillColor = nil
shapeLayer.lineDashPattern = [1,3]
shapeLayer.path = path.CGPath
cell.layer.addSublayer(shapeLayer)
によってCell.layerに破線が含まれていCAShapeLayerを追加してみてくださいするために使用さしかし、それは自己のサイジングテーブルビューセルでは動作しませんでした
tableView.rowHeight = UITableViewAutomaticDimension
私はあなたの助けに感謝します!
の可能性のある重複した[のUITableView区切り線](http://stackoverflow.com/questions/4804632/uitableview-separator-line) –