DragTableViewCell.swift 822 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // DragTableViewCell.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 29/09/22.
  6. //
  7. import UIKit
  8. class DragTableViewCell: UITableViewCell {
  9. @IBOutlet var optionLabel: UILabel!
  10. override func awakeFromNib() {
  11. super.awakeFromNib()
  12. // Initialization code
  13. }
  14. override func setSelected(_ selected: Bool, animated: Bool) {
  15. super.setSelected(selected, animated: animated)
  16. // Configure the view for the selected state
  17. }
  18. override func layoutSubviews() {
  19. super.layoutSubviews()
  20. //set the values for top,left,bottom,right margins
  21. let margins = UIEdgeInsets(top: 5, left: 0, bottom: 5, right: 0)
  22. contentView.frame = contentView.frame.inset(by: margins)
  23. contentView.layer.cornerRadius = 8
  24. }
  25. }