Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have Plist with list with List of Dictionaries(item0,item1,item2).. generally when I display in screen ..it populates in ascending order...item0 then item1 then item2......and so on..I want the Plist to be display in reverse order as itemn,itemn-1.........item2,item1,item0

first .
and this is how code goes...and How Can I reverse it ..need changes in Array below

NSMutableArray *Array=[NSMutableArray arrayWithArray:[self readFromPlist]];

NSMutableArray *items = [[NSMutableArray alloc] init];

for (int i = 0; i< [Array count]; i++)
//how to reverse by making changes here
//for (int i =[Array count] ; i>0; i--) does not work
{


    id object = [Array objectAtIndex:i];

    if ([object isKindOfClass:[NSDictionary class]])
    {
        NSDictionary *objDict = (NSDictionary *)object;



           tempItemi  =[[ECGraphItem alloc]init];

        NSString *str=[objDict objectForKey:@"title"];
        NSLog(@"str value%@",str);
        float f=[str floatValue];


        //my code here
 }
share|improve this question

2 Answers

up vote 1 down vote accepted

Use reverse enumeration

for (id someObject in [myArray reverseObjectEnumerator]){
    // print some info
    NSLog([someObject description]);
}

For your code:

for (id object in [Array reverseObjectEnumerator]){
    if ([object isKindOfClass:[NSDictionary class]])
    {
        NSDictionary *objDict = (NSDictionary *)object;

        tempItemi  =[[ECGraphItem alloc]init];

        NSString *str=[objDict objectForKey:@"title"];
        NSLog(@"str value%@",str);
        float f=[str floatValue];

        //my code here
    }
}

Also in your code:

//for (int i =[Array count] ; i>0; i--) does not work

should be as

for (int i =[Array count]-1 ; i>=0; i--)
share|improve this answer
ya thanks man..thanks for ur effort !it works!! – Christien Dec 26 '12 at 10:38
and is it possible..like from plist..I want to display for 1 week iteration ...means for date-26 Dec 2012 to 1 week – Christien Dec 26 '12 at 10:42
plists are stored as per key-value pairs, you can easily sort the dictionary or retrive it based on key or value... – Anoop Vaidya Dec 26 '12 at 10:46
for this case how I can i sort here..I am passing the date value as the NSDate in my app .. – Christien Dec 26 '12 at 10:58
explain your question, am not getting. Do you need code to sort nsdates? – Anoop Vaidya Dec 26 '12 at 11:11
show 1 more comment

You are itrating from count to 1 whereas array has objects from index count-1 to 0
e.g.
Array with 10 objects has objects from index 0 to 9

for (int i =[Array count]-1 ; i >= 0; i--)
{
    id object = [Array objectAtIndex:i];

    if ([object isKindOfClass:[NSDictionary class]])
    {
        NSDictionary *objDict = (NSDictionary *)object;

        tempItemi  =[[ECGraphItem alloc]init];

        NSString *str=[objDict objectForKey:@"title"];
        NSLog(@"str value%@",str);
        float f=[str floatValue];


        //my code here
 }
share|improve this answer
ya thanks man ! it works!! thnx for ur effort – Christien Dec 26 '12 at 10:39
and is it possible..like from plist..I want to display for 1 week iteration ...means for date-26 Dec 2012 to 1 week – Christien Dec 26 '12 at 10:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.