Skip to content

Instantly share code, notes, and snippets.

@mauricioconde
Last active August 29, 2019 21:16
Show Gist options
  • Select an option

  • Save mauricioconde/0392731319691a429e3a to your computer and use it in GitHub Desktop.

Select an option

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
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