I referred this link as I am trying to sort the data from web service in table View. My first question is can we sort data in a mutable array? I get this compiler error in the following code.
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"Name" ascending:YES];
NSArray *sortArrayWithObject = [NSArray arrayWithObject:sortDescriptor];
NSArray *sortedArray = [tempArray sortUsingDescriptors:sortArrayWithObject]; // error
tempArray
is NSMutableArray
and not NSArray
.
Issue was because of a silly mistake. I modified API call as below and it now works.