在ios
tableView中,我想實(shí)現(xiàn)的功能是點(diǎn)擊單元格,彈出對(duì)話框顯示單元格的內(nèi)容。但現(xiàn)在的問(wèn)題是,我點(diǎn)擊第一個(gè)單元格時(shí),不彈出對(duì)話框,但點(diǎn)擊第二個(gè)單元格時(shí),彈出對(duì)話框,但是顯示的內(nèi)容是第一次點(diǎn)擊的單元格的內(nèi)容。是不是哪里設(shè)置有問(wèn)題
,求各位大神指教。單元格點(diǎn)擊響應(yīng)代碼如下。-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath{
NSString *message = [dataSource_ objectAtIndex:indexPath.row];
UIAlertView *alert = [[UIAlertView alloc]init];
alert.message = message;
[alert addButtonWithTitle:@"OK"];
[alert show];}
- 2 回答
- 0 關(guān)注
- 832 瀏覽
添加回答
舉報(bào)
0/150
提交
取消