ReceiptDetailController
extension ReceiptDetailController
The receipt detail controller
-
Returns tableview section count
Declaration
Swift
@MainActor override public func numberOfSections(in tableView: UITableView) -> Int -
Returns title for header
Declaration
Swift
@MainActor override public func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? -
Returns the count of receipt detail fields
Declaration
Swift
@MainActor override public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int -
Display the receipt details
Declaration
Swift
@MainActor override public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell -
Estimated height of header
Declaration
Swift
@MainActor override public func tableView(_ tableView: UITableView, estimatedHeightForHeaderInSection section: Int) -> CGFloat -
Declaration
Swift
@MainActor override public func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat
View on GitHub