This is screen shot, in the last drop down menu is there, I clicked it and it's showing some menus that one
but instead of that, here I want to add sorting menus like,
1. sort by date
2. sort by name
3. sort by ...etc
This is screen shot, in the last drop down menu is there, I clicked it and it's showing some menus that one
but instead of that, here I want to add sorting menus like,
1. sort by date
2. sort by name
3. sort by ...etc
i used DropDown for my project, we can easily customize these DropDownCell(customCell) & Appearance too.
You can able to integrate with your project through PODS
pod 'DropDown'
For short array by a key.. Like Name....Put the key on which you want to short your array
This will Short your array Ascending
NSSortDescriptor *descriptor = [[NSSortDescriptor alloc] initWithKey:@"Your Key" ascending:YES selector:@selector(localizedStandardCompare:)];
NSArray *shortedArray=[Your array sortedArrayUsingDescriptors:[NSArray arrayWithObjects:descriptor,nil]];
This will Short your array Decending
NSSortDescriptor *descriptor = [[NSSortDescriptor alloc] initWithKey:@"Your Key" ascending:NO selector:@selector(localizedStandardCompare:)];
NSArray *shortedArray=[Your array sortedArrayUsingDescriptors:[NSArray arrayWithObjects:descriptor,nil]];