我使用UITextfield
作为搜索栏。
See this image to see what I want to achieve
每次点击tableView``行时都没有多选。
self.searchText.text = [NSString stringWithFormat:@"%@",[_sortedArray objectAtIndex:indexPath.row]];
self.tableView.hidden = YES;
[selectednames addObject:_searchText.text];
for (int i = 0; i < selectednames.count ; i++) {
[self makeLabelsAndButtons:i];
}
在didSelectRowatIndexpath
中的tableview
中