Tagged Questions
The nssortdescriptor tag has no wiki summary.
9
votes
2answers
2k views
iPhone CoreData - How to fetch managed objects, and sorting them ignoring case?
Does anyone know how to fetch some results sorting them alphabetically but ignoring case?
4
votes
1answer
110 views
Objective C - Sort NSmutableArray that contains 2 types of object?
I have an NSMutableArray that contains 2 types of Objects.
Both objects contain a field for dates (date Strings with different formats) with different names.
What's the best and fastest way to sort ...
4
votes
2answers
384 views
Sorting core data position changes with sort descriptors for iPhone
I have a CoreData entity with two attributes. One called 'position' the other called 'positionChange'. Both of them are integers where the position attribute is the current position and the ...
4
votes
1answer
911 views
Custom sorting with NSFetchedResultController (subclassing NSSortDescriptor)
I want to provide custom sorting using NSFetchedResultsController and NSSortDescriptor.
As custom sorting via NSSortDescriptor message -(id)initWithKey:ascending:selector: is not possible (see here), ...
3
votes
1answer
2k views
Problem with NSSortDescriptor using custom comparator via selector
I want to use a sortdescriptor with a custom comparator
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc]
initWithKey:@"object.dateTime"
ascending:YES
...
3
votes
1answer
594 views
CoreData sort on to-many relationship
I'm writing an iOS app which has store of person records, and needs to display lists them sorted in particular ways. There are a variable number of these orderings, and they are generated on the fly, ...
2
votes
3answers
38 views
Blocks in NSSortDescriptors - Objective C
I have a switch statement which creates a relevant NSSortDescriptor. For some of the NSSortDescriptors I am using a block as a custom comparator (to compare CMTimes). The following code works fine but ...
2
votes
1answer
40 views
NSSortDescriptor - has the order changed?
I have an NSFetchRequest that is getting objects from core-data and sorting them using a trivial NSSortDescriptor. I use a couple of different ones depending on what the user selects, but they are ...
2
votes
2answers
56 views
Sort NSDate without respect to the time of day - just the date
I have an array controller with keys of nextCheck (NSDate), lastName (NSString), and firstName (NSString). I have set the sort descriptors for the array. As you can see below, I am sorting by ...
2
votes
1answer
88 views
Sorting NSMutableArray using SortDescriptor AND Predicate possible?
I have an array of type "Restaurant" which has an NSSet of "Rating." Rating has an ID and a value.
I want to sort the array of Restaurant's by rating with an ID of 01, from high to low.
Something ...
2
votes
1answer
25 views
NSFetchedResultsController / Parent-Child
I'm working on my first Core Data-backed app and am having trouble figuring out how to set up an NSFetchedResultsController properly. I have two entities:
/-----------\ /-----------\
| List ...
2
votes
1answer
54 views
Implementing NSSortDescriptor in iphone?
I have an nsmutablearray named nsmarrMedicineInfo. I want to sort the element by using NSSortDescriptor. When I execute the following code it shows NSUnknownKeyException. I can not find what will be ...
2
votes
1answer
95 views
NSSortDescriptor with a function
I only have a limited experience in using NSSortDescriptor.
It was sorting on one key and it worked fine.
But here is what I need now, I have a set of pairs of numbers, for example :
{(2,3), (44,5), ...
2
votes
1answer
529 views
Sorting an NSFetchRequest by a dependent property using a to-many relationship
Would appreciate some guidance as I'm a bit out of my depth on a Core data issue. I would like to create an NSFetchRequest with an NSSortDescriptor that uses a dependent property based on a to-many ...
2
votes
2answers
337 views
Sort Array in assending order..?
Sorry for asking silly question..
I have an array with class objects like:
Class User {
NSString *firstName, *LastName;
}
@property (nonatomic, retail) NSString *firstName;
@property ...
2
votes
1answer
1k views
Sorting with sortedArrayUsingDescriptors and Key Paths
I have an unordered array with instances of the following class:
@interface Place : NSObject {
}
@property (nonatomic, copy) NSString *country;
@property (nonatomic, copy) NSString *city;
@property ...
2
votes
0answers
284 views
NSSortDescriptor - push # and numbers to the end of the list - iphone xcode
I have a table view that shows contacts sorted by alphabetic ordering and divide it to sections.
i am using -
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:[dataSource ...
2
votes
1answer
402 views
How can you use sort descriptors and predicates with core data transformable fields?
I have an application which I wrote which used to work perfectly fine. There is new requirement that all data needs to be encrypted now, so I implemented encryption by making all my core data fields ...
2
votes
1answer
223 views
Which sorting algorithm is behind an NSSortDescriptor?
Is that thing using bubble sort? Or what exactly? How does it work in context with an NSFetchRequest of Core Data?
2
votes
1answer
721 views
iPhone Fetch Request with localized sorting
I'm trying to get sorted localized data from a core data model. My code:
NSEntityDescription *entityDescription = [NSEntityDescription entityForName: entityDescriptionValue
...
2
votes
6answers
3k views
Help sorting an NSArray across two properties (with NSSortDescriptor?)
I'm a bit of a NSSortDescriptor n00b. I think, though, it is the right tool for what I need to do:
I have an NSArray consisting of objects with keys, say, "name" and "time". Instead of verbalizing ...
1
vote
1answer
62 views
Can someone assist me with a NSSortDescriptor issue I am having?
I have the following code that sorts by ascending.
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"platform.name" ascending:YES];
NSMutableArray *sortedReleases = ...
1
vote
1answer
45 views
Setting and maintaining the first SortDescriptor for an NSTableView
I have an NSTableView with columns bound to an NSArrayController.
The table view shows a list of email messages:
Flag if unread
Subject
Attachment size
The user can click on the Attachment Size ...
1
vote
1answer
135 views
NSSortDescriptor with arbitrary sorting
I can't wrap my head around how to do arbitrary sorting with a NSSortDescriptor.
I want to do something like this:
NSArray *sortAlgorithm = [NSArray arrayWithObjects:@"@", @"#", @"!", @"&", ...
1
vote
0answers
101 views
NSSortDescriptor with Comparator Changes Behavior on Fetch vs Initial Load
I'm getting really bizarre behavior with an NSSortDescriptor. Let's start with my code:
NSSortDescriptor *nameExists = [NSSortDescriptor sortDescriptorWithKey:@"firstName" ascending:YES ...
1
vote
1answer
27 views
Is there a way to add (hack) custom SQL to a Core Data fetch?
I know that there isn't a public API for this and you are not really supposed to be doing this.
But say you're using a persistent store of the type NSSQLiteStoreType, what are convenient cut points ...
1
vote
0answers
81 views
Customized sort in NSFetchedResultsController
After spending hours, I found that it was not possible to do customized sort in NSFetchedResultsController backed by SQLite from following article.
NSFetchedResultsController custom sort not getting ...
1
vote
2answers
243 views
NSFetchedResultsController `performFetch:` Results No Longer Sorted
I managed a tableview with NSFetchedResultsController whose fetch request uses a simple sort on a date attribute. It sorts properly when it first loads but when I refresh or call the loadMore method ...
1
vote
2answers
261 views
Very custom order using NSSortDescriptor
Let's say I have objects with different statuses. Statuses are from 0 to 2. I need to sort them using NSSortDescriptor in this way:
1
2
0
Any suggestions?
1
vote
2answers
192 views
Sort NSString of NSDate in iphone
I have an array which has NSString converted from NSDate. I am getting the initial index of the array and sorting them.
Dates are in format : 08AM , 01PM. When I try to do NSSortDescriptor, it always ...
1
vote
1answer
35 views
Problem to data parsing from array in iphone app
I have data with following format.
Data (
{
"retweet_count" = 0;
retweeted = false;
user = {
verified = false;
};
},
{
"retweet_count" = ...
1
vote
2answers
237 views
Writing compare: method in Objective-C
I saw this post: How to sort an NSMutableArray of objects by a member of its class, that is an int or float
And had something similar, but I wasn't sure how it all works and was hoping for some ...
1
vote
2answers
94 views
Comparing an NSString with NSNumber in the string
Someone else designed this class to have an NSString for an ID (I don't know why to be honest). So, some objects have @"" for their ID (blank), some have @"id12345" or something to that effect. I ...
1
vote
0answers
161 views
Sorting an array of dictionaries based on dictionary keys [closed]
Possible Duplicate:
Sorting NSDictionary
Can we sort an array of dictionaries the way we do for array of arrays using NSComparator & NSSortDescriptor based on some keys in the ...
1
vote
0answers
247 views
Core Data Sort Descriptors with relationships between Entities
I have two entities, Job and Client. The relationship from job to client is called clientOfJob which is a many-to-one relationship: Job<<-->Client
I am trying to understand how I would sort my ...
1
vote
1answer
382 views
problem with NSSortDescriptor .i am sorting the in ascending order(alphabetical order)
I am using NSSortDescriptor to sort the custom objects with key bandName, but I am not getting the output in alphabetical order. How do I fix that?
-(void)getdetails
{
NSLog(@"in getdetail ...
1
vote
1answer
417 views
Sorting of Date String using sortUsingDescriptors?
I have number of arrays of dictionary
points = 200;
startDate = "Jun 04, 2011, 13:15 PM";
points = 200;
startDate = "May 01, 2011, 11:15 PM";
and -------
I have to do sorting on ...
1
vote
0answers
264 views
iPhone - NSSortDescriptor with localizedCaseInsensitiveCompare gives incorrect results for special characters
i have a problem with NSSortDescriptor for NSFetchedResultsController (Core Data). I have names stored in the db in Slovenian language (including č ć ž š) and they're not being sorted correctly.
If I ...
1
vote
1answer
342 views
Is it possible to have Core Data sort the “many” part of a To-Many relationship during a fetch request?
I'm using Core Data to cache a decent amount of information, and I have a To-Many relationship set up among my managed objects. Naturally I use an NSFetchRequest to fetch an array of the singular side ...
1
vote
2answers
324 views
Sorting an NSArray using another NSArray as a guide
So, imagine you have a couple of arrays, Colors and Shapes, like this:
Colors: {
Yellow,
Blue,
Red
}
Shapes: {
Square,
Circle,
Diamond
}
Now, if I want to sort Colors into alphabetical order I can ...
1
vote
2answers
649 views
Sorting a to-many relationship when calling NSFetchRequest
I have two entities. Client and Project. A Client has many Projects, but a Project can only be assigned to one Client. This has been designed with the datamodel.
Client entity has attribute ...
1
vote
1answer
304 views
NSSortDescriptor is not working while fetching records from Core Data
I am trying to use NSSortDescriptor in Core Data to fetch my records. Array of modal-objects doesn't get affected by sort descriptor. It gives records in same order.Here is my code:
...
1
vote
1answer
467 views
Core Data sorting in one to many relationship
I have setup a data model where Student Entity has a name a 1-to-many relationship with Subject. Each Subject that he attends has a number of Class Times.
The code below sorts it, based on the ...
1
vote
1answer
156 views
Comparing 2 objects using descriptor array
Is there a function that compares two objects using an array of NSSortDescriptor and returns the NSComparisonResult? (Putting them in an array will not identify equality.)
1
vote
1answer
213 views
Some sorting problems (Core Data beginner)
Maybe there is a simple solution to this, but I'm getting headache of this, I'm fairly new with all this Core Data stuff:
I have a BankAccount class/entity with an "index" attribute, used for ...
1
vote
1answer
624 views
Custom sorting using categories and core data - is it supported by the framework?
I'm developing for iPhone iOS 4.0 and I have a list of birthday objects (date + name) stored using Core Data. I want to use the NSFetchedResultsController to retrieve this list sorted by the next ...
1
vote
1answer
631 views
NSSortdescriptor, finding the path to the key I wish to use for sorting
I am using an NSSortdescriptor to sort a collection of NSArrays, I then came across a case where the particular NSArray to be sorted contains an NSDictionary who contains an NSDictionary.
I would like ...
1
vote
3answers
781 views
NSSortDescriptor for NSFetchRequestController causes crash when value of sorted attribute is changed
I have an Core Data Entity with a number of attributes, which include amount(float), categoryTotal(float) and category(string)
The initial ViewController uses a FethchedResultsController to retrieve ...
1
vote
1answer
4k views
Core Data Table View Section Sort by weekdays using NSSortDescriptor
I'm currently trying to sort my array of objects into day order so they can be grouped in the correct order i.e. Monday, Tuesday, Wednesday then by start time.
Only problem is I can't figure out how ...
0
votes
1answer
40 views
How to use sortUsingFunction (or sortUsingSelector) to sort NSMutableArray of objects containing arrays
I have an NSMutableArray of model objects. Each model object contains an NSArray of NSNumbers. I want to sort the model objects based on the lowest NSNumber value from their respective number arrays.
...