Guest User

Untitled

a guest
May 19th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. class AddAccount: UIViewController {
  2. let DataContext= (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext
  3.  
  4. @IBAction func addAccount(_ sender: UIBarButtonItem) {
  5. let newAccount = Account(context: DataContext)
  6. newAccount.name = nameuser.text
  7. newAccount.username= username.text
  8. newAccount.password= password.text
  9.  
  10. (UIApplication.shared.delegate as! AppDelegate).saveContext()
  11. }
  12. }
Add Comment
Please, Sign In to add comment