Add Feedbin account and delete account functionality added to iOS

This commit is contained in:
Maurice Parker
2019-05-19 18:04:32 -05:00
parent 16f2f43cc7
commit 50b68096cd
6 changed files with 322 additions and 13 deletions

View File

@@ -12,7 +12,8 @@ import Account
class AddLocalAccountViewController: UIViewController {
@IBOutlet weak var nameTextField: UITextField!
weak var delegate: AddAccountDismissDelegate?
@IBAction func cancel(_ sender: Any) {
dismiss(animated: true)
}
@@ -21,6 +22,7 @@ class AddLocalAccountViewController: UIViewController {
let account = AccountManager.shared.createAccount(type: .onMyMac)
account.name = nameTextField.text
dismiss(animated: true)
delegate?.dismiss()
}
}