私は配列の配列を持っています。含まれる配列の最初の要素はすべて NSDate オブジェクトです。配列を含む配列を最新のものから順に並べ替えたいと思います。何らかの理由で、以下の並べ替えアルゴリズムは無限ループになります。誰でも私を助けることができますか?ありがとうございました。
ベスト...SL
//array is the array containing all of the other arrays(that have NSDates as their first elements)
//temp is the new array being added to the end of the array, to later be sorted into the correct position.
[array addObject:temp];
NSMutableArray *tempArray;
for (int i=0; i<[array count]; i++)
{
NSDate *session1, *session2;
session1 = [[array objectAtIndex:i] objectAtIndex:0];
session2 = [[array objectAtIndex:[array count]-1] objectAtIndex:0];
if([session1 compare:session2] == NSOrderedDescending)
{
tempArray = [array objectAtIndex:i];
[array insertObject:[array objectAtIndex:[array count]-1] atIndex:i];
[array insertObject:tempArray atIndex:[array count]-1];
}
}