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

FetchRequest and data

Forums > SwiftUI

 @FetchRequest(sortDescriptors: [
        SortDescriptor(\.data),
//    SortDescriptor(\.titolo)
    ])

Hello could you please help me to order afetch request on a records that rappresents a date?

I have a coredata attribute called data that is of type Date and i would lik to order my list by this attribute.

Thanks

   

Hi! Should be something like this

@FetchRequest(sortDescriptors: [
    SortDescriptor(\.data)
]) var yourName: FetchedResults<YourObjectName>

1      

@Bnerd  

@FetchRequest(sortDescriptors: [NSSortDescriptor(key: "data", ascending: false)]) var yourName: FetchedResults<YourEntityName>
//This will fetch and sort the results newest to oldest

   

Save 50% in my Black Friday sale.

SAVE 50% To celebrate Black Friday, all our books and bundles are half price, 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!

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.