簡體   English   中英

在uitableview中隱藏/顯示detailTextLabel

[英]hiding / showing of detailTextLabel in uitableview

當我的tableview加載時,我試圖隱藏我的detailTextLabel.cell,代碼,

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

cell.detailTextLabel.hidden = YES;

在選擇行時,嘗試在didSelectRowAtIndexPath中顯示詳細信息,正如預期的那樣,當按下行時顯示詳細信息,一旦我停止按下它,詳細信息就會消失,為什么會這樣,

- (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]];
    }

}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM