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
0
votes
1answer
23 views
How to sort array of strings in which string contains numbers in it [duplicate]
I would like to sort an array of custom objects based on the name(NSString) variable. The name variable can have numbers in the end.
Unsorted data: Tank 1, Tank 2, Tank 10, Tank 32, Tank 3, Tank 11
...
0
votes
3answers
38 views
Using NSPredicate to filter an object and a key(that needs to be split)
I have the following dictionary set up(Object, Key)
0, "10;0.75,0.75"
1, "0;2.25,2.25"
3, "1;3.5,2.0"
4, "1;4.5,3.0"
5, "2;6.0,5,0"
What I want to filter will be based on the object AND the key. ...
0
votes
3answers
32 views
What will be my key in NSSortDescriptor
I want to sort my array in ascending and descending order. For that I have search on Google and thanks to StackOverflow I have got this answer,
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor ...
0
votes
1answer
35 views
Trouble sorting content of UITableView
Hi I am working off of a Ray Wenderlich tutorial that displays a list of purchased IAP in a tableview. The table view is not sorted and I would like them to be sorted by name.
Either the tableview ...
2
votes
3answers
49 views
iOS: Sort files in a folder according to the order of an array [duplicate]
I have a folder that contain files B, C, A. This is the order they appear in when I do the following:
NSFileManager *filemgr;
NSArray *filelist;
int count;
int i;
filemgr ...
0
votes
1answer
54 views
Core Data sort descriptors based on whether a relationship exists?
I have a Wishlist entity, and an Item entity. They have bilateral to-many optional relationship, i.e. an item can be in 0 or more wishlists, and an wishlist can contain 0 or more items.
If I do ...
0
votes
3answers
36 views
How to sort an NSMutableArray based on multiple attributes and non-attributes (methods)
I having problems to sort an NSArray of custom objects. The NSArray has to be sorted by a method that returns an int value (so it's not an object's attribute) and by an attribute that belongs to the ...
0
votes
1answer
69 views
NSFetchedResultsController: NSSortDescriptor with relation as key sends unrecognized selector compare: to core data entity object
I am trying to save a one-to-many relation in core data. There is a user decision involved to determine whether the new child list object needs to be attached to a new parent object. In the other case ...
0
votes
1answer
38 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
39 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
103 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
73 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 ...
-1
votes
3answers
57 views
Core Data - Sort by Sum of multiple Rows [closed]
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
33 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):
...
2
votes
0answers
49 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
99 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
35 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
47 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
85 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
66 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
80 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
108 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
240 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
52 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
68 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
116 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
68 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
38 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
161 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
100 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
144 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
57 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
48 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
215 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
122 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
265 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
101 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
116 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
62 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
72 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
54 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
315 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
105 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
61 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
67 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?
...
2
votes
2answers
247 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
83 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
59 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
116 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
78 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 ...




