Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/ios/112.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ios 在uitableview中隐藏/显示detailTextLabel_Ios_Objective C_Uitableview_Expand - Fatal编程技术网

Ios 在uitableview中隐藏/显示detailTextLabel

Ios 在uitableview中隐藏/显示detailTextLabel,ios,objective-c,uitableview,expand,Ios,Objective C,Uitableview,Expand,我试图在tableview加载时隐藏我的detailTextLabel.cell cell.textLabel.text=[array objectAtIndex:indexPath.row]; cell.detailTextLabel.text=[detailarray objectAtIndex:indexPath.row]; cell.detailTextLabel.hidden = YES; 选择行时,尝试在didSelectRowAtIndexPath中显示DETAILARY,正如

我试图在tableview加载时隐藏我的detailTextLabel.cell

cell.textLabel.text=[array objectAtIndex:indexPath.row];
cell.detailTextLabel.text=[detailarray objectAtIndex:indexPath.row];

cell.detailTextLabel.hidden = YES;
选择行时,尝试在didSelectRowAtIndexPath中显示DETAILARY,正如预期的那样,在按下行时显示DETAILARY,一旦我停止按下,DETAILARY文本将消失,原因是

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
 [tableView deselectRowAtIndexPath:indexPath animated:YES];
NSLog(@"indexpath is %d", indexPath.row);
selectedIndex = indexPath.row;
isSearching = YES;

[self.tableview beginUpdates];
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

cell.textLabel.text=[dealarray objectAtIndex:indexPath.row];
cell.detailTextLabel.text=[detailarray objectAtIndex:indexPath.row];

cell.detailTextLabel.hidden = NO;


[self.tableview endUpdates];



}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
if (isSearching && indexPath.row == selectedIndex)
{

    return 77;

}
return 44;


}
编辑:

在.h文件中分配了一个变量“a”,并使用如下代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
// Configure the cell...
cell.textLabel.text=[dealarray objectAtIndex:indexPath.row];
cell.detailTextLabel.text=[detailarray objectAtIndex:indexPath.row];
    NSLog(@"dealarray %@\n %@",dealarray,detailarray);

    if (a==-1) {
        cell.detailTextLabel.hidden = YES;

    }
    else if(a==indexPath.row)
    {
        cell.detailTextLabel.hidden = NO;
               }
    else 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 = YES;
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

cell.textLabel.text=[dealarray objectAtIndex:indexPath.row];
cell.detailTextLabel.text=[detailarray objectAtIndex:indexPath.row];
a=indexPath.row;
[tableview reloadData];

}

为此,您可以使用两种类型的单元格

对于正常数据,请使用基本单元格。在选择时,重新加载表格或单元格,并仅对选定行使用另一个detailLabel单元格

它会解决你的问题


谢谢

如果我了解您的需求,您可以尝试下面的代码来解决您的问题

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:
(NSIndexPath *)indexPath {
    /* .

     Write necessary code here....
     */

    // -------------
    cell.textLabel.text=[array objectAtIndex:indexPath.row];
    if (![selectedRowIndexs containsObject:[NSNumber numberWithInt:indexPath.row]])
    {
         cell.detailTextLabel.hidden = YES;

    }
    else
    {
        cell.detailTextLabel.hidden = NO;

    }

}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    cell.detailTextLabel.text=[detailarray objectAtIndex:indexPath.row];
    cell.detailTextLabel.hidden = NO;
    if (![selectedRowIndexs containsObject:[NSNumber numberWithInt:indexPath.row]])
    {
        [selectedRowIndexs addObject:[NSNumber numberWithInt:indexPath.row]];
    }

}

您是否也需要在按下后显示detailLabelText???@NeelamVerma,是的,我只需要在按下后显示detailLabelText,因为我希望显示有关所选行的详细说明。