Answers for "swift uitableviewcell padding"

1

swift uitableview cell spacing

// Inside UITableViewCell subclass
override func layoutSubviews() {    
    super.layoutSubviews()

    contentView.frame = contentView.frame.inset(by: UIEdgeInsets(top: 8, left: 8, bottom: 8, right: 8))
}
Posted by: Guest on March-25-2020

Code answers related to "swift uitableviewcell padding"

Code answers related to "Swift"

Browse Popular Code Answers by Language