Last active
August 29, 2019 21:16
-
-
Save mauricioconde/0392731319691a429e3a to your computer and use it in GitHub Desktop.
iOS Programming. Cretate a Simple Table View App - Script to manage custom UITableViewCell
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
| import UIKit | |
| @IBDesignable class NoteCell: UITableViewCell { | |
| static let nibName = "NoteCell" | |
| static let cellID = "NoteCell" | |
| @IBOutlet var titleLbl: UILabel! | |
| @IBOutlet var descLbl: UILabel! | |
| @IBOutlet var dateLbl: UILabel! | |
| @IBOutlet var iconImg: UIImageView! | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment