BLACK FRIDAY: Save 50% on all my Swift books and bundles! >>

SOLVED: Day 38, Challenge 3

Forums > 100 Days of SwiftUI

I tried the splitting of personal and business expenses in iExpense. I'm looking for a good way to present totals for each of these in the List Section footer. Is there an easy way to achieve this (personal expenses section as an example)?

List {
                if personalExpenses.personalItems.isEmpty {
                    Section("Personal Expenses") {
                        Text("No personal expenses")
                    }
                } else {
                    Section() {
                        ForEach(personalExpenses.personalItems) { item in
                            HStack {
                                Image(systemName: "creditcard")
                                    .font(.title2)
                                    .foregroundStyle(.secondary)
                                VStack(alignment: .leading, spacing: 5) {
                                    Text(item.name)
                                        .font(.headline)
                                    Text(item.type)
                                        .font(.footnote)
                                        .foregroundStyle(.secondary)
                                }
                                .frame(maxWidth: .infinity, alignment: .leading)
                                Text("\(item.amount, specifier: "%.2f kr")")
                            }
                        }
                        .onDelete(perform: removePersonalItems)
                    } header: {
                        Text("Personal Expenses")
                    } footer: {
                        Text("Total personal expenses: \(100) PLACEHOLDER")
                    }

2      

Try something like this

var sumPersonalExpenses: Double {
    let amounts = personalExpenses.personalItems.map { $0.amount }
    return amounts.reduce(0, +)
}

3      

Save 50% in my WWDC sale.

SAVE 50% All our books and bundles are half price for Black Friday, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.

Save 50% on all our books and bundles!

Reply to this topic…

You need to create an account or log in to reply.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.