TinkMoneyManagerUI Documentation Beta

Protocol Transaction​Edit​View​Controller​Delegate

public protocol TransactionEditViewControllerDelegate: AnyObject

A set of methods that your delegate object can implement to track when the user cancel the edit transaction, or to track when the edit transaction succeeded.

TransactionEditViewControllerDelegate TransactionEditViewControllerDelegate AnyObject AnyObject TransactionEditViewControllerDelegate->AnyObject TransactionDetailsViewController TransactionDetailsViewController TransactionDetailsViewController->TransactionEditViewControllerDelegate

Conforms To

AnyObject

Types Conforming to Transaction​Edit​View​Controller​Delegate

TransactionDetailsViewController

A view controller that displays details about a specific transaction.

Requirements

transaction​Edit​View​Controller​Did​Cancel(_:​)

func transactionEditViewControllerDidCancel(_ viewController: TransactionEditViewController)

Tells the delegate that the user canceled edit transaction.

Parameters

view​Controller Transaction​Edit​View​Controller

The view controller that called this method.

transaction​Edit​View​Controller​Did​Edit​Successfully(_:​transaction:​)

func transactionEditViewControllerDidEditSuccessfully(_ viewController: TransactionEditViewController, transaction: Transaction)

Tells the delegate that the edit transactions succeeded.

Parameters

view​Controller Transaction​Edit​View​Controller

The view controller that called this method.

transaction Transaction

The edited transaction.