Class
EditBudgetViewController
public final class EditBudgetViewController: UINavigationController
A view controller that can be used to edit a budget.
Use the EditBudgetViewController
when you want to let the user either update the name, amount and period of the budget or delete the budget.
Required scopes: budgets:write
, budgets:read
.
When creating the view controller, specify the ID for which budget to edit.
let editBudgetViewController = EditBudgetViewController(budgetID: <#Budget.ID#>)
present(editBudgetViewController, animated: true)
Relationships
Conforms To
UINavigationController
Initializers
Properties
editBudgetViewControllerDelegate
var editBudgetViewControllerDelegate: EditBudgetViewControllerDelegate?
An object that conforms to the EditBudgetViewControllerDelegate
protocol.
Methods
viewDidLoad()
override public func viewDidLoad()
viewDidAppear(_:)
override public func viewDidAppear(_ animated: Bool)