an OS X API class , describing a basis for ordering objects by specifying the property to use to compare the objects, the method to use to compare the properties, and whether the comparison should be ascending or descending

learn more… | top users | synonyms

0
votes
1answer
33 views

FetchResultsController sorting issue

I have an NSFetchResultsController initialised with an NSSortDescriptor that sorts according to the localizedCaseInsensitiveCompare: method. Entities are sorted on their last name, however some of ...
1
vote
2answers
25 views

Why my sorting method using NSSortDescriptor doesn't work well?

I filter my table result using NSPredicate NSPredicate *resultPredicate = [NSPredicate predicateWithFormat:@"Name CONTAINS[cd] %@ OR Address CONTAINS[cd] %@", ...
0
votes
3answers
86 views

NSSortDescriptor - Sort descriptor based on another array

I hava a core data application. And I want to fetch one kind of object, User. User have the property userId. I have another array with userIds, [1, 4, 3, 5]. And I would like to create a ...
0
votes
0answers
42 views

NSSortDescriptor error : “ [NSSortDescriptor count]: unrecognized selector sent to instance ”

I am trying to setup NSFetchedResultsController with fetch request and I keep getting the error: "[NSSortDescriptor count]: unrecognized selector sent to instance" Below is my code. My model has ...
0
votes
2answers
31 views

Core Data - Sort by Sum of multiple Rows

With the following coredata model given, I need to show every Kunde in a tableview with the values of PbsRow - to be precise, I'm showing the sum of sumnetto and sumdb1 for each particular Kunde. ...
0
votes
1answer
27 views

Sorting an array by number of times an object appears in that array

I'm lost in a sea of sort descriptors, dictionaries, and counted sets. Hoping someone can help me find an easier way. Starting with a sorted array like this (of NSNumbers): ...
1
vote
0answers
31 views

Using a NSFetchedResultsController with an NSManagedObject and fetched properties

I have a database of Cards and Printings that I have in one store (reference data) and my user's data of Containers and CardInstances in another store (as Apple suggests). Each user's card is a table ...
0
votes
5answers
65 views

Sort a NSArray of numbers in ascending order but send zeros at the end

I have a simple NSArray, containing NSNumbers. I sort the array in an ascending order this way : NSSortDescriptor *lowestToHighest = [NSSortDescriptor sortDescriptorWithKey:@"self" ascending:YES]; ...
0
votes
1answer
31 views

iphone+how to sort amount string

I have amount string values like 1000, 100000, 10000000, 5000. the problem is am using sort descriptor for sorting. its sorting properly string wise but after converting to 1k, 10k, 1m, 5k its not ...
0
votes
0answers
38 views

UISearchDisplayController/NSFetchedResultsController with custom sort order

I'm implementing a search feature in my app. I would like the user to look up a word simultaneously in multiple attributes of a given Entity. Here is an example for an Entity with 3 String ...
0
votes
1answer
56 views

Using NSSortDescriptor to sort UITableview title with setDateFomat:@"dd.MMMM-EEEE

I have a title in UITableView with different dates with the formate of dd.MMMM-EEEE. How can I sort them according to time from old to new? Should I use NSSortDescriptor? Here is my code: ...
0
votes
1answer
55 views

Using NSFetchedResultsController to return objects with ordered relationships

I have the following Core Data structure: Event <<-->> Team <<-->> Player (all relationships are many-to-many and Event>Team & Team>Player are ordered relationships). ...
0
votes
0answers
61 views

How to sort Array of dictionary inside array of dictionary data in iphone

I have Array of dictionary inside array of dictionary datas, i need to sort inside array of dictionary based on user selection. for example my data values is sortResultArray--( { ...
1
vote
0answers
66 views

NSSortDescriptor with fetched property core data

I have an Agency entity that has a fetched property city. I'm performing a fetch request and I want my results to be sorted by agency's name and by city's name. This is the part of old code. As you ...
1
vote
1answer
128 views

Keypath <transientproperty> not found in entity

I want to show a formatted date in the section header of a table view.. I used the following code.but its throwing an exception *** Terminating app due to uncaught exception ...
0
votes
2answers
45 views

Sort NSArray based on derived value… with a hitch?

I want to be able to sort a NSArray of objects based on its tag value. The hitch is if the tag is 0, I want it pushed to the end of the array. NSSortDescriptor *sortDescriptor = [[NSSortDescriptor ...
2
votes
1answer
54 views

Sort NSFetchedResultsController result based on array?

I would like to construct a NSPredicate or NSSortDescriptor (Core Data search) that is based on the content of an array. The array will consists of userId:s in the right order: [1, 2, 5, 3]; I ...
1
vote
1answer
77 views

Sorting NSArray by NSOrderedSet

I'm doing an NSFetchRequest with the following predicate: [NSPredicate predicateWithFormat:@"index IN %@", indexes]; ... where indexes is an NSOrderedSet of numbers. This gives me an array of ...
0
votes
2answers
53 views

Sorting Array Based on custom object values

I Need to Sort out an array of custom objects. The object is simple, it stores an x and y co-ordinate, for example: XYPointObject.xCoordinate = [NSNumber]; XYPointObject.yCoordinate = [NSNumber]; ...
0
votes
1answer
28 views

NSSortDescriptors getting the right class comparison methods

I am making a NSFetchRequest and want my results to come back sorted by date from Core Data. The dateLastViewed attribute is a NSDate in Core Data and so, I want my compare: method to be that one of ...
2
votes
0answers
108 views

NSSortDescriptor to sort by number of items in Core Data To-Many Relationships

It's a long standing problem when using Core Data to-many-relationships that it is very hard to sort a fetch request using NSSortDescriptor on a Parent entity based on the number of children are in a ...
0
votes
1answer
86 views

Can't get my poker logic to properly check for a straight flush in NSMutableArray of “Card” objects [closed]

Been stuck on this problem for three days. Thought writing this question out would take longer than solving the problem myself, but I'm getting nowhere with this. I'll try to lay this out as ...
0
votes
3answers
105 views

How to use NSSortDescriptor to sort an NSMutableArray

I'm using the following NSSortDescriptor code to sort an array. I'm currently sorting by price but would like to also put a limit on the price. Is it possible to sort by price but only show price less ...
0
votes
1answer
55 views

sorting the nsarray

I have an NSArray as given below: ( { AppStatus = Appointment; AptEndTime = "03/06/2013 9:30 PM"; AptStartTime = "03/06/2013 9:00 PM"; BirthDate = ...
1
vote
1answer
44 views

disable “create sort descriptor” for column programmatically

i have a NSTableview that uses cocoa bindings. i need to disable sorting in the table and to do so i found following text here on stackoverflow: If you use Cocoa bindings to manage the data, the sort ...
3
votes
1answer
194 views

Sort NSFetchedResultsController with object in NSSet belonging to entity

I have an object called Delivery that has a set of Customer objects associated with it. Each Delivery object also stores a mainCustomerId which is an NSNumber*. I have an NSFetchedResultsController ...
3
votes
1answer
106 views

How to sort a NSMutableArray using NSSortDescriptor?

I'm parsing data from JSON webservice and then using the following code to sort the data by price, date, discount etc. here's the code I'm using to sort the data: -(void)priceSort:(id)sender { ...
1
vote
1answer
166 views

unsupported NSSortDescriptor (comparator blocks are not supported)

In fetchedResultsController while setting the NSSortDescriptor iam getting this error unsupported NSSortDescriptor (comparator blocks are not supported). NSFetchRequest *fetchRequest = ...
2
votes
3answers
81 views

How do I make NSSortDescriptor for Array Work?

I managed to create an Array of MyLocation objects with their distance property set in the first of 2 tabs in a tabBarController. In my 2nd tab I get it like so in viewDidLoad: [self ...
0
votes
1answer
104 views

Sorting order in NSTableView

I have a list of data which I am able to sort by clicking on the column header. The only problem is that it displays like: 10A 11A 12A 1A 2A 3A etc... Where ideally, I would like it to be sorted ...
0
votes
2answers
55 views

How to sort by either a distance in float or a price that is an int?

I am allowing users to be able to sort either by price (int) or by distance (float). I have an NSMutableArray of NSdictionary objects that store the data as follows: ({"asking_price" = 588832; ...
0
votes
0answers
66 views

Sorting floats works on simulator but fails on actual device?

I recently submitted an app on app store and am running into a weird issue that I have been unable to diagnose. My app has a section that allows users to sort search results. The issue I am having is ...
0
votes
1answer
52 views

ios - NSFetchResultsController error with sortDescriptors

I have a Table View Controller with a list of Formations handled by a fetchResultsController. Here's how my core data entities looks like : I try to sort my fetchResultsController by dateRangelike ...
1
vote
1answer
220 views

Core Data Sort By Multiple Sort Descriptors WIth CaseInsensitiveCompare

I have a Word : NSManagedObject subclass that I'm trying to group by the first letter of the word. In each section I'm then trying to sort by the length property while maintain the alphanumeric sort ...
1
vote
4answers
96 views

Sort NSArray alphabetically avoiding certain characters

I have an NSArray of objects (not NSStrings, but custom objects). Each object has a value obj.name I know how to sort the NSMutableArray by name as shown below NSSortDescriptor *sort = ...
-1
votes
2answers
53 views

NSSortDescriptor using sort an Array [closed]

I want to sort an array Using the NSSortDescriptor does not remove the duplicates in my array
0
votes
1answer
64 views

sort array of objects by string

I have an array of managedobjects. Each has a title (name). I want to sort these NOT alphabetically, but by the one that matches a certain string the closest (the search query) How would I do this? ...
3
votes
2answers
207 views

Sort NSDate objects in NSMutableArray using NSSortDescriptor?

In my project, I'm getting some data from an APi and I retreive the data into a NSMutableArray by parsing the JSON. It has a key called "StartDate" which is of the format : " mm/dd/yyyy hh:mm:ss " as ...
1
vote
2answers
76 views

Sort descriptor on string returns unwanted result

I use this sort descriptor NSArray *sortedObjects = [self.array sortedArrayUsingDescriptors:[NSArray arrayWithObjects:[NSSortDescriptor sortDescriptorWithKey:@"index" ascending:YES], nil]]; The ...
0
votes
2answers
55 views

NSSortdescriptor not mixing lists

I've got an array which should be sorted by name, but only the half of it gets sorted. I've got a list of entries which can be devided in two parts, the first part comes from a dictionary and only has ...
2
votes
1answer
94 views

MagicalRecord sorting using by KVC

I used KVC until now to access object's properties. In my object i have a method like this: -(Address *)mainAddress { if (self.addresses != nil) { return [self.addresses anyObject]; ...
1
vote
2answers
76 views

Using NSSortDescriptors, returning array is null

with the help of StefanB's answer in How to sort NSMutableArray using sortedArrayUsingDescriptors? I got pretty much understood and so implemented NSSortDescriptors in my project, I have Facebook ...
0
votes
0answers
59 views

big issue with sectionNameKeyPath and NSSortDescriptor

For example : I have many scores like : name score A 70 B 50 A 90 B 60 C 40 C 70 ... I want to display them in tableview like this : section 0: A 90 A 70 ...
0
votes
2answers
82 views

Sort the contents of an NSScrollView, NSTableView, using Binding in ArrayController

I have an NSScrollView wich is bound with an ArrayController. I need to sort the content alphabetically. I've tried to do this with bindings but I can't find the right thing to bind. I used the ...
0
votes
1answer
137 views

Custom NSSortDescriptors

I have an NSFetchedResultsController which I use to fetch my core data and populate a table. To sort the data currently I am using the code below: NSSortDescriptor *sortDescriptor = ...
0
votes
1answer
114 views

When Trying to Sort an NSMutableArray using NSSortDescriptor, I get Unrecognized Selector

I'm trying to do something that seems basic, but I can't it get working. I'm keeping track of an NSMutableArray of like objects. The objects have an NSNumber @property called "priority", which I am ...
0
votes
2answers
200 views

Sorting Number using NSSortDescriptor

I got stuck in another problem again but after a long time. This time I have database (Core Data), having an attribute of numbers which contains integer numbers like 213879,123,4,345,56567 and so. I ...
2
votes
1answer
126 views

NSSortDescriptor with first name and last name,or with either first name or last name?

I am doing sorting of an contact info array,it's working fine when I entered first name and last for particular contact,but it's not working fine when any of it is missing, For Ex: if I enter first ...
0
votes
0answers
99 views

Custom Sort for Each section in UiCollectionView

I have a Core Data where i Display them in UICollectionview , i want to Sort each Section in the Collection According to custom sortdescriptor to be defined by the user For Example Section 1 , to be ...
3
votes
1answer
291 views

Locations in Core Data sorted by distance via NSFetchedResultsController?

I have a set of entity objects in my iOS Core Data database that describe something at a location. Let's call the entity Location. I have implemented this by having two attributes on Location that ...

1 2 3 4 5