Skip to content

Tink Money Manager iOS 2.1.0

Compare
Choose a tag to compare
@belous-cto belous-cto released this 29 Oct 12:33
· 8 commits to master since this release
9561cdd
  • Added Subscriptions feature *
  • Various visual improvements of Statistics on Finance Overview

Subscriptions

The Subscription tool is designed to help you, and your end-users, get a clear understanding of your active subscriptions and their associated costs on a monthly, quarterly, and annual basis.

To present the Subscription Overview on the Finance Overview, use the new feature type .subscriptionsOverview:

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

Displaying Subscription Overview in Statistics

By default, displaying the Subscription Overview in Expenses screen is disabled.
To enable it, set the configuration option showSubscriptionsInStatistics to true:

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

Subscriptions Entrypoint

Use the SubscriptionsViewController when you want to display a list of subscriptions.
Required scopes to display subscriptions: subscriptions:read.

let subscriptionsViewController = SubscriptionsViewController(tink: <#Tink#>)
show(subscriptionsViewController, sender: <#Any#>)

* Subscriptions is not enabled by default. Speak to your account manager for more information.