テーブルビューセルの周りに境界線を追加しようとしています。UITableViewCellの右側にボーダーが表示されない
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath)
cell.separatorInset.left = 20.0
cell.separatorInset.right = 20.0
cell.separatorInset.top = 20.0
cell.separatorInset.bottom = 20.0
cell.layer.borderWidth = 3
cell.layer.cornerRadius = 20.0
cell.layer.borderColor = UIColor.colorWithHexString("80CBC4").CGColor
return cell
}
セルの幅を確認してください。 –
はセルビューの 'width'と' height'制約を定義しました – triandicAnt
私の最近の答えからの解決策を試してください... –