Hi I have created a table view which filled with a plist data , I need re ordering the cells , I mean instead of showing data like this :
1
2
3
4
5
should be like this :
5
4
3
2
1
I am using this code :
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"self" ascending:NO];
titles = [[titles sortedArrayUsingDescriptors:[NSArray arrayWithObject:sortDescriptor]] retain];
in this method :
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
but the result is something like this
1
5
2
4
3
how can I fix it ?
EIDTED :
my plist :
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<string>1</string>
<string>2</string>
<string>3</string>
<string>4</string>
<string>5</string>
</array>
</plist>