テーブル ビューの検索バーを追加する必要があります。テーブルには、実際には「患者」というオブジェクト内に格納されている「名前」が含まれています。「患者」オブジェクトの配列があります。名前を検索するための検索バーをセットアップしますが、NSPredicate を使用してそれを行う方法は?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString* CellId= @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellId];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellId] ;
}
cell.accessoryType = UITableViewCellAccessoryNone;
ObjPatient = [allPatientDetails objectAtIndex:indexPath.row];
cell.textLabel.text =[NSString stringWithFormat:@"%@ %@",ObjPatient.firstName,ObjPatient.lastName];
return cell;
}
上記は、テーブルに名前を表示するコードです。どんな提案でも大歓迎です、ありがとう