An OS X (available in OS X v10.
I have an unordered array with instances of the following class: @interface Place : NSObject { } @property (nonatomic, copy) NSString *country; @property (…
objective-c cocoa sorting key-value-observing nssortdescriptorI have an array of class A objects, let it be detailsArray. Class A has date, name as properties. Can …
objective-c nsarray nssortdescriptorI have created a sort descriptor to sort a plist response coming from my server. This works well with sort …
iphone objective-c ios cocoa-touch nssortdescriptorI'm using the following NSSortDescriptor code to sort an array. I'm currently sorting by price but would like to also …
objective-c cocoa nssortdescriptorI'm a bit of a NSSortDescriptor n00b. I think, though, it is the right tool for what I need …
cocoa sorting nsarray nssortdescriptorIn my Xcode project I have the following classes: Address @interface LDAddress : NSObject{ NSString *street; NSString *zip; NSString *city; float …
objective-c ios sorting nssortdescriptorI'm doing some small work on sorting the date strings in the NSMutableArray, i'm getting the array from the sqlite …
ios iphone objective-c nsdate nssortdescriptorIt appears NSSortDescriptor should be a fairly easy class to work with. I have stored in CoreData an entity with …
objective-c sorting core-data nsfetchrequest nssortdescriptorI have an custom object which contains time period based information, for instance the attributes endCalYear, endMonth and periodLength which …
objective-c ios sorting comparison nssortdescriptorHow would I sort a NSFetchRequest with that the date property of the managed object. So that it creates a …
swift nsfetchrequest nssortdescriptor