Skip to content

Tink Money Manager iOS 1.4.0

Compare
Choose a tag to compare
@belous belous released this 20 Jun 09:24
· 52 commits to master since this release
ec5c397
  • Added Safe to Spend feature *
  • Added Recurring Expenses feature
  • Added ability to show predicted recurring expenses in All transactions screen

Safe to Spend

To present the Safe to Spend on the Finance Overview, use the new statistics type .safeToSpend:

let financeOverviewViewController = FinanceOverviewViewController(features: [
    .statistics([.expenses, .safeToSpend, .income]),
    .accounts,
    .latestTransactions
])
let navigationController = UINavigationController(rootViewController: financeOverviewViewController)
// Present the `navigationController` in a preferable way. 

Recurring Expenses

To show the Recurring Expenses in the Finance Overview, add .recurringExpenses to the list of the features for FinanceOverviewViewController:

let financeOverviewViewController = FinanceOverviewViewController(features: [
    .statistics([.expenses, .safeToSpend, .income]),
    .accounts,
    .recurringExpenses,
    .latestTransactions
])
let navigationController = UINavigationController(rootViewController: financeOverviewViewController)
// Present the `navigationController` in a preferable way. 

Displaying Predicted Recurring Expenses in All Transactions screen

By default, displaying Predicted Recurring Expenses in All Transactions screen is disabled.
To enable it, set the configuration option showRecurringExpenses to true:

let financeOverviewViewController = FinanceOverviewViewController(features: features)
financeOverviewViewController.configuration.showRecurringExpenses = true

* Safe To Spend is not enabled by default. Speak to your account manager for more information.