あなたは以下のような何かを行うことができます:
仕上げを検索した後、あなたのViewControllerA
のtableViewをリロードします。
およびCellForRowAtIndexPath
arrAllData
の現在のindexPathにあるオブジェクトのtableViewチェックは、arrFilterData
に属します。
の場合YES
セルをハイライト表示します。そうでない場合はハイライト表示します。
と同様に、
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *Cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
if (Cell == nil) {
acell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
}
if([arrFilterData containsObject:[arrAllData objectAtIndex:indexPath.row]]){
//Highlight Cell
}
else{
//Do not highlight cell
}
}
以下のコードを記述してください。 – WasimSafdar