Tag: 展开

手风琴表格单元格 – 用于展开和折叠ios

我正在尝试用手风琴单元格模式展开/折叠桌面单元格,这样,当用户点击该行时,通过扩展行高就可以得到单元格内所选行的详细描述。 我有2个数组,'数组'和'detailarray',用于在'cell.textLabel.text'和'cell.detailTextLabel.text'单元格中显示它。 现在最初我已经把'cell.detailTextLabel.hidden = YES'作为隐藏的,这样当用户点击行时就可以得到单元格的扩展文本。 我的代码, – (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]; // Configure the cell… cell.textLabel.text=[array objectAtIndex:indexPath.row]; cell.detailTextLabel.text=[detailarray objectAtIndex:indexPath.row]; cell.detailTextLabel.hidden = YES; return cell; } – (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { [tableView deselectRowAtIndexPath:indexPath animated:YES]; NSLog(@"indexpath is %d", indexPath.row); selectedIndex = indexPath.row; isSearching […]