Как выполнить панель поиска в представлении таблицы для контактов в ios [закрыто]

у меня есть следующий код в viewdidload

totalstring=[[NSMutableArray alloc]initWithObjects:@"a",@"b",@"c",@"d",@"e",@"f",@"g",@"h",@"i",@"j",@"k",@"l",@"m",@"n",@"n",@"o",@"p",@"q",@"r",@"s",@"s",@"t",@"u",@"v",@"w",@"x",@"y",@"z", nil];





indid=indidvalue1;

NSLog(@"the ind id value is %@",indid);

serviceCall=[[Services alloc]init];

NSString *contactsDisplay1=@"ContactDetails";

NSDictionary *contactsDisplayDetails1 =@{@"IND_ID":indid};

[serviceCall ContactsDisplayUrl:contactsDisplay1 ContactsDisplayDetails:contactsDisplayDetails1];
[serviceCall setDelegate:self];

код для реализации панели поиска

{


    filteredstring =[[NSMutableArray alloc]init];

    for (NSString *str in totalstring )
    {

     NSRange stringrange =[str rangeOfString:searchText options:NSCaseInsensitiveSearch];

        if(stringrange.location!= NSNotFound)
        {
            [filteredstring addObject:str];
        }
    }
}
[tableView reloadData];

код для табличного представления

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

if (cell == nil)
{
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:simpleTableIdentifier];
}
if (tableView == self.searchDisplayController.searchResultsTableView)
{
    cell.textLabel.text = [searchResultsArray objectAtIndex:indexPath.row];
} else
{
    UIFont *myfont=[UIFont fontWithName:@"Arial" size:35];
    cell.textLabel.text = [contactNameSplitDisplayArray objectAtIndex:indexPath.row];
    cell.detailTextLabel.text=[relationTypeSplitDisplayArray objectAtIndex:indexPath.row];
    cell.textLabel.font=myfont;
}
return cell;

Как реализовать панель поиска в табличном представлении для контактов на доске объявлений? Я новичок в iOS? и как реализовать кнопку плюс и кнопку точек в представлении таблицы?

Ответы на вопрос(2)

Ваш ответ на вопрос