如何通过正确的查询获取结果,想要获取隔离记录?

时间:2013-09-25 16:58:03

标签: ios objective-c core-data uitableview

我正在使用Core DataUITableViewController。我有一个表category,其中包含name列,descriptis_active(布尔值)。

我想获取像

这样的结果
SELECT * 
FROM CATEGORY 
WHERE IS_ACTIVE = 1

我已经通过表单激活了这个。

我正在尝试此代码 - 在视图中我有这个加载部分

- (void)viewDidLoad
{
    [super viewDidLoad];
    IMSAppDelegate *appDelegate = [[UIApplication sharedApplication]delegate];
    context = [appDelegate managedObjectContext];
    NSEntityDescription *category = [NSEntityDescription entityForName:@"Category" inManagedObjectContext:context];
      NSFetchRequest *request = [[NSFetchRequest alloc] init];


    [request setEntity:category];

    NSSortDescriptor *sort = [[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES];
    NSArray *srotDesc = [[NSArray alloc]initWithObjects:sort, nil];

    [request setSortDescriptors:srotDesc];

    NSError *error;
     NSMutableArray *results = [[context executeFetchRequest:request error:&error] mutableCopy];
    if (results == nil) {
        //error handle here
    }

    [self setArr:results];
    NSLog(@"there is category array");

    [self.tableView reloadData];
    [arr count];

    }

并在tableViewCell

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    Category *category = [arr objectAtIndex:indexPath.row];

    // Configure the cell...
    cell.textLabel.text = [category name];
    cell.detailTextLabel.text = [category descript];

    return cell;
}

它向我显示所有记录,如所有名称和描述。

我想只在is_active = 1的位置显示这些记录。

1 个答案:

答案 0 :(得分:0)

向NSFetchRequest添加谓词

...
NSFetchRequest *request = [[NSFetchRequest alloc] init];
[request setEntity:category];

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"is_active == 1"];
[request setPredicate:predicate];
...