我是 iPhone SKD 的新手。我想知道,如果我将所有对象从一个数组复制(我的意思是可变复制/复制)到另一个数组。这是我的代码:
NSSortDescriptor* DateSorter = [[NSSortDescriptor alloc] initWithKey:@"lounge_rating" ascending:NO];
NSMutableArray *temp = [appdelegate.LongeListArray mutableCopy];
[temp sortUsingDescriptors:[NSArray arrayWithObject:DateSorter]];
appdelegate.LongeListArray = temp;
[table reloadData];
[DateSorter release];
我想知道我应该释放临时数组吗?请帮助我。谢谢...