Guest User

Untitled

a guest
Nov 22nd, 2018
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. if segue.identifier == ProfilePhotoViewController.identifier {
  2. guard let username = usernameTextField.text, let email = emailTextField.text, let password = passwordTextField.text else { return }
  3.  
  4. let profilePhotoVC = segue.destination as! ProfilePhotoViewController
  5. profilePhotoVC.email = email
  6. profilePhotoVC.username = username
  7. profilePhotoVC.password = password
  8. }
Add Comment
Please, Sign In to add comment