TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

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      

Hacking with Swift is sponsored by Superwall.

SPONSORED Superwall lets you build & test paywalls without shipping updates. Run experiments, offer sales, segment users, update locked features and more at the click of button. Best part? It's FREE for up to 250 conversions / mo and the Superwall team builds out 100% custom paywalls – free of charge.

Learn More

Sponsor Hacking with Swift and reach the world's largest Swift community!

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.