123456789101112131415161718192021222324252627282930313233 |
- //
- // DragTableViewCell.swift
- // LMS
- //
- // Created by Suraj Kumar Mandal on 29/09/22.
- //
- import UIKit
- class DragTableViewCell: UITableViewCell {
-
- @IBOutlet var optionLabel: UILabel!
-
- override func awakeFromNib() {
- super.awakeFromNib()
- // Initialization code
- }
-
- override func setSelected(_ selected: Bool, animated: Bool) {
- super.setSelected(selected, animated: animated)
-
- // Configure the view for the selected state
- }
-
- override func layoutSubviews() {
- super.layoutSubviews()
- //set the values for top,left,bottom,right margins
- let margins = UIEdgeInsets(top: 5, left: 0, bottom: 5, right: 0)
- contentView.frame = contentView.frame.inset(by: margins)
- contentView.layer.cornerRadius = 8
- }
-
- }
|