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

Getting dates from core data

Forums > SwiftUI

I am able to get strings to show in my edit form but i am really struggling getting the date out - i just want it to display as text and format it to be d MMM y.

Do i need a state var for it even though it cannot be changed in this view - if so what would that look like?

The state vars that i have are very simple

    @State private var name = ""

This is my view

    var body: some View {
        Form{
            Section{
                Text("\(date_added)")
                    .foregroundColor(.gray)
                TextField("\(cigar.name!)", text:$name)
                TextField("\(cigar.brand!)", text:$brand)
                    .onAppear{
                        name = cigar.name!
                        brand = cigar.brand!
                    }
                    HStack{
                        Spacer()
                        Button("Update"){
                            CigarDataController().editCigar(cigar:cigar, name: name, brand: brand, context: manObjCont)
                            dismiss()
                        }
                    Spacer()
                }
            }
        }
    }

2      

Hacking with Swift is sponsored by RevenueCat.

SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure your entire paywall view without any code changes or app updates.

Learn more here

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

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

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.