List of Dictionaries(item0、item1、item2)..のリストを含むPlistがあります。通常、画面に表示すると、昇順で表示されます。.. item0 then item1 then item2......and so on
Plistを次のように逆の順序で表示したいです。itemn,itemn-1.........item2,item1,item0
。
これがコードの流れです...そしてどうすればそれを元に戻すことができますか..Array
以下の変更が必要です
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
}