Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. import Foundation
  2. import UIKit
  3.  
  4. extension UITableViewCell {
  5. func makeCustomText (model: Holiday?) {
  6. guard let _ = model else {
  7. return
  8. }
  9. let customText = model!.description + ", " + model!.month + " " + model!.day + " " + model!.year
  10. self.textLabel?.text = customText
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement