0

我需要在表格视图的一部分中单击按钮来展开框架和标签。同样,当再次单击按钮时,框架和标签应恢复到其原始(压缩)状态。这必须对表格视图的所有部分进行。如果我单击一个部分的按钮,它会扩展所有部分的框架。但是该标签已针对该单击部分上的所有内容展开。下面是代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{                   
    NSUInteger section = [indexPath section];

    if(section==0 || section==2)
    {                   
        static NSString *myIdentifier = @"tableCell";

        DUGSProjectTableCell *cell = (DUGSProjectTableCell*)[tableView dequeueReusableCellWithIdentifier:myIdentifier];
        cell.readMoreButton.tag=[indexPath section];

        [cell.readMoreButton addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];

        if (section==0) {

            cell.myLabel.text=@"On this festive season one of the leading real estate developers in NCR Delhi, is launching a new residential project ";
        }

        else if (section==2){
            cell.myLabel.text=@"Situated in hot & fast upcoming neighbourhood,Spread in 30 acres,Located in the heart of the city";
        }

        if(self.isHeightChanged)
        {                       
            if ([cell.readMoreButton.titleLabel.text isEqualToString:@"Read More"]) {

                [cell.readMoreButton setTitle:@"Read Less" forState:UIControlStateNormal];

                cell.readMoreButton.frame=CGRectMake(223, 90 , 66, 25) ;

                CGRect frame = cell.myLabel.frame;

                cell.myLabel.numberOfLines=0;
                cell.myLabel.lineBreakMode=NSLineBreakByWordWrapping;
                frame.size.height=100;
                cell.myLabel.frame=frame;

            }

            else if ([cell.readMoreButton.titleLabel.text isEqualToString:@"Read Less"])
            {
                [cell.readMoreButton setTitle:@"Read More" forState:UIControlStateNormal];

                cell.readMoreButton.frame=CGRectMake(223, 70 , 66, 25) ;

                CGRect frame = cell.myLabel.frame;

                cell.myLabel.numberOfLines=0;
                cell.myLabel.lineBreakMode=NSLineBreakByWordWrapping;

                frame.size.height=30;
                cell.myLabel.frame=frame;

            }
        }
        return  cell;
    }

    else if (section==1){

        static NSString *myIdentifier = @"unitCell";

        DUGSUnitPlanCell *cell = (DUGSUnitPlanCell*)[tableView dequeueReusableCellWithIdentifier:myIdentifier];

        return cell;

    }

    return NULL;
}

下面是按钮单击的代码:

 (void)buttonPressed:(UIButton *)button
{
    DUGSProjectTableCell *selectedCell = (DUGSProjectTableCell*)[[button superview] superview];
    if (selectedCell) {



        if ([button.titleLabel.text isEqualToString:@"Read More"] ) {
            whichButton=@"M";
            NSLog(@"%@",whichButton);
        }

        else if ([button.titleLabel.text isEqualToString:@"Read Less"]){
           whichButton=@"L";
            NSLog(@"%@",whichButton);

        }
        NSLog(@"%d",selectedCell.readMoreButton.tag);

        NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:selectedCell.readMoreButton.tag];
        selectedIndexPath=indexPath;
        NSLog(@"%@",selectedIndexPath);
        self.isHeightChanged=YES;
        [self.tableViewForPropertyOverview reloadRowsAtIndexPaths:@[selectedIndexPath ] withRowAnimation:UITableViewRowAnimationAutomatic];

    }

}

下面是扩展框架的代码:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if([indexPath section]==1){
        return 60;
    }

    if (([indexPath section]==0)||([indexPath section]==2)) {

        if (selectedIndexPath!=NULL){
            return 120.0f;

        }

        else{
            return 60.0f;

    }}

}

所有部分的帧大小都增加到 120。相反,当单击其中的按钮时,它应该对第 0 和 2 部分执行此操作。请指教。

4

1 回答 1

0

我认为你真的没有 3 个部分,而是一个包含 3 个表格视图单元格的部分。

似乎对部分和行存在一些误解。你写:

我需要在表格视图的一部分中单击按钮来展开框架和标签。

这根本不符合逻辑。表格视图部分中没有 UI 元素。相反,一个部分包含行(单元格),这些行(单元格)又包含标签等,并且它可能显示一个部分标题。所以你真的想扩展属于一个部分的行。

heightForRowAtIndexPath不能返回任何其他内容,但60.0如果它是第二部分。但请注意,此方法不返回“截面高度”,而是返回一行的高度。如果您看到的所有三个空格都被展开,则它们必须都在第 0 节中。

假设您每个部分只需要一行,您需要:

  • 返回 3 英寸numberOfSections
  • 返回 1 英寸numberOfRowsInSection

最后,检查按钮的文本以确定它是哪一个不是好的做法。您可以tag使用整数按钮,然后签[(UIButton*)sender tag]入处理程序。我看到你在某处使用了一个标签,但不清楚为什么你还需要一个字符串常量。

于 2013-08-24T23:38:17.420 回答