GO FURTHER, FASTER: Try the Swift Career Accelerator today! >>

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 Essential Developer.

SPONSORED Transform your career with the iOS Lead Essentials. Unlock over 40 hours of expert training, mentorship, and community support to secure your place among the best devs. Click for early access to this limited offer and a FREE crash course.

Click to save your free spot now

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.