Advertisement
Guest User

Untitled

a guest
Jul 17th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. import UIKit
  2.  
  3. class ViewCodeViewController: UIViewController {
  4.  
  5. let content: UIView
  6. let imageView: UIImageView
  7. let labelTitle: UILabel
  8. let labelDescription: UILabel
  9.  
  10. init(content: UIView, imageView: UIImageView, labelTitle: UILabel, labelDescription: UILabel) {
  11. self.content = content
  12. self.labelTitle = labelTitle
  13. self.imageView = imageView
  14. self.labelDescription = labelDescription
  15.  
  16. super.init(nibName: nil, bundle: nil)
  17. }
  18.  
  19. required init?(coder aDecoder: NSCoder) {
  20. fatalError("init(coder:) has not been implemented")
  21. }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement