What is the best way to sort a Core Data Entity?

Viewed 15064

I have a fully working core data model, but when I return the data using a fetch request, it's in a seemingly random order. What is the best way to sort this data? Is it to use another table in the Core Data model, and 'query' the first? Or would it be to pull down the data into an array, and sort it that way?

I'm not too sure how to do either of these, which is the reason that I am asking this question.

1 Answers
Related