我正在制作一个 Iphone 应用程序,我让用户单击一个按钮,它会更改我获取的结果控制器中的排序。但是,在我关闭我的应用程序后,它会变回原来的排序方式。我只是想知道当应用程序重新打开时是否有任何方法可以按住该按钮。
- (IBAction)btnValue:(id)sender {
self.model.frc_Work.delegate = self;
NSSortDescriptor *sortDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"Value" ascending:YES];
self.model.frc_Work.fetchRequest.sortDescriptors = [NSArray arrayWithObject:sortDescriptor];
}