如何在iOS中搜索时获取所选的tableview按钮值
我在tableviewcell里面有一个按钮,在那个按钮中我检索了json 值并存储在其中,但当我点击该按钮时,我得到的按钮值正确。但是当我在tableview中搜索并单击该按钮时,我将在iOS中获得错误的值。
view *destViewController = segue.destinationViewController;
destViewController.manid = [[man objectAtIndex:[sender tag]]objectForKey:@"mgrid"];
我用它来获取所选按钮值
cell.invi.text = [[self.searchResults objectAtIndex:indexPath.row]objectForKey:@"mgrid"];
cell.invi.tag = indexPath.row;
这是cellForRowAtIndexPath
中的标记。