Created
July 22, 2020 12:59
-
-
Save imnaveensharma/29f199ae989ed449ac5a5f804915d3e9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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