Protocol
AccountDetailsViewControllerDelegate
public protocol AccountDetailsViewControllerDelegate: AnyObject
A set of methods that your delegate object can implement to track when the user selects a transaction.
Relationships
Conforms To
AnyObject
Requirements
accountDetailsViewController(_:didSelectTransaction:)
func accountDetailsViewController(_ viewController: AccountDetailsViewController, didSelectTransaction transaction: Transaction)
Tells the delegate that the user selected a transaction.
Parameters
Name | Type | Description |
---|---|---|
viewController | AccountDetailsViewController |
The view controller that called this method. |
transaction | Transaction |
The transaction that the user selected. |