Skip to content

Instantly share code, notes, and snippets.

@imnaveensharma
Created July 22, 2020 12:59
Show Gist options
  • Select an option

  • Save imnaveensharma/29f199ae989ed449ac5a5f804915d3e9 to your computer and use it in GitHub Desktop.

Select an option

Save imnaveensharma/29f199ae989ed449ac5a5f804915d3e9 to your computer and use it in GitHub Desktop.
class func emptyTableCell() -> UITableViewCell {
let cellDefault: UITableViewCell = UITableViewCell(style: .default, reuseIdentifier: "Cell")
cellDefault.selectionStyle = .none
cellDefault.textLabel?.text = ""
cellDefault.imageView?.image = nil
return cellDefault
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment