如果我想显示所有对象,我使用下面的代码。但是,如果我只想显示键“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];
}
附言。属性列表是一个带有字典的数组。