0

如果我想显示所有对象,我使用下面的代码。但是,如果我只想显示键“Favorite”=“Yes”的值的对象,那又如何呢?这样的例子会很棒。

- (void)viewDidLoad
{
[super viewDidLoad];    

NSString *path = [[NSBundle mainBundle]
                    pathForResource:@"Objects" ofType:@"plist"];

sortedObjects = [[NSMutableArray alloc]initWithContentsOfFile:path];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [sortedObjects count];
}

附言。属性列表是一个带有字典的数组。

4

2 回答 2

1

您需要创建一个新数组,我们称之为过滤,您通过过滤 sortedObjects 创建,并使用它来填充表。

NSPredicate *pred = [NSPredicate predicateWithFormat:@"SELF.Favorite == %@", @"Yes"];
NSArray *filtered = [sortedObjects filteredArrayUsingPredicate:pred];
于 2012-08-11T01:11:39.360 回答
0

尝试添加以下代码。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *cellIdentifier = @"cellIdentifier";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier] autorelease];
        cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    }

    [self configureCell:cell atIndexPath:indexPath];

    return cell;
}

- (void)configureCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath 
{
    if([[sortedObjects objectAtIndex:indexPath.row] valueForKey:@"Favorite"] isEqualToString:@"YES"])
    {
        //do stuff
    }
}
于 2012-08-11T01:15:06.427 回答