从自定义tableview单元类加载时如何调整单元格的高度?

时间:2012-12-12 07:44:43

标签: iphone ios ipad uitableview custom-cell

我有一个应用程序,我在两个设计中添加了两种类型的单元格。所以我使用自定义UITableViewCell对象类。但我的问题是我在这个单元格中使用文本视图。我需要根据内容大小调整行高。这就是我的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier1 = @"CellIdentifier";
    static NSString *CellIdentifier2 = @"Cell";
        
    if(messagesarray==nil||[messagesarray count]==0)
    {
        
    }
    else
    {
        NSMutableDictionary *dicttable=[messagesarray objectAtIndex:indexPath.row];
        NSString *head=[dicttable objectForKey:@"gfgfg"];
        NSString *head1=[dicttable objectForKey:@"gfgfgf"];
        if([type isEqualToString:@"m"])    
        {
            if([head isEqualToString:@"NA"])
            {
             
                CustomCell *cell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier1];
                if (cell == nil)
                {
                    cell = [[[CustomCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier1] autorelease];
                    cell.backgroundView = [ [[UIImageView alloc] initWithImage:[ [UIImage imageNamed:@"white_top_portion.png"] stretchableImageWithLeftCapWidth:0.0 topCapHeight:5.0] ]autorelease];
                }
                cell.selectionStyle = UITableViewCellSelectionStyleNone;
                cell.nameLabel.text=head;
                cell.msg.text=head1;
                [cell.button addTarget:self action:@selector(callAction:) forControlEvents:UIControlEventTouchUpInside];     
              
                if(icon!=nil)
                {
                    if(![[ImageCache sharedImageCache] hasImageWithKey:icon])
                    {
                        cell.myImageView.image = [UIImage imageNamed:@"fggtgf.png"];
                        NSArray *myArray = [NSArray arrayWithObjects:cell.myImageView,icon,@"fgfgfg.png",[NSNumber numberWithBool:NO],nil];
                        AppDelegate *appDelegate = (AppDelegate  *)[[UIApplication sharedApplication] delegate];
                        [appDelegate performSelectorInBackground:@selector(updateImageViewInBackground:) withObject:myArray];   
                    }
                    else 
                    {
                        cell.myImageView.image = [[ImageCache sharedImageCache] getImagefromCacheOrUrl:icon];
                    }
                }
                else
                {
                    cell.myImageView.image = [UIImage imageNamed:@"fgfgfg.png"];  
                  
                } 
         
                cell.label.text=sub;   
                return cell;
            }
            else
            {
                Customcellwithimage *cell = (Customcellwithimage *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier2];
             
                if (cell == nil)
                {
                    cell = [[[Customcellwithimage alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier2] autorelease];
                    cell.backgroundView = [ [[UIImageView alloc] initWithImage:[ [UIImage imageNamed:@"white_deal_bg.png"] stretchableImageWithLeftCapWidth:0.0 topCapHeight:5.0] ]autorelease];
                }
             
                cell.selectionStyle = UITableViewCellSelectionStyleNone;
                cell.datelabel1.text=subtitle;
                cell.nameLabel1.text=head;
                cell.msg1.text=head1;
                if(icon!=nil)
                {
                    if(![[ImageCache sharedImageCache] hasImageWithKey:icon])
                    {
                        cell.myImageView1.image = [UIImage imageNamed:@"fgfgfgf.png"];
                        NSArray *myArray = [NSArray arrayWithObjects:cell.myImageView1,icon,@"fgfgfgf.png",[NSNumber numberWithBool:NO],nil];
                        MFAppDelegate *appDelegate = (MFAppDelegate  *)[[UIApplication sharedApplication] delegate];
                        [appDelegate performSelectorInBackground:@selector(updateImageViewInBackground:) withObject:myArray];   
                       
                    }
                    else 
                    {
                        cell.myImageView1.image = [[ImageCache sharedImageCache] getImagefromCacheOrUrl:icon];
                    }
                }
                else
                {
                    cell.myImageView1.image = [UIImage imageNamed:@"fgfgfgf.png"];  
                } 
              
                cell.cellview1.image=[UIImage imageNamed:@"vf.png"];
                cell.label1.text=sub;
                [cell.button1 addTarget:self action:@selector(callAction:) forControlEvents:UIControlEventTouchUpInside]; 
                cell.bannerview1.image=[UIImage imageNamed:@"vfgf.png"];
                return cell;
            }   
        }                 
    }  
}
       

任何人都可以帮我实现不同单元格的行高不同吗?。我必须找出- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath中的高度,我试过一个方法需要找出当前行的单元格对象。但没有成功。可以任何人指导我正确的方向

3 个答案:

答案 0 :(得分:0)

我认为您正在寻找- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath - 在这里您可以计算每一行的高度。

注意,如果计算量很大,您可能会发现性能下降。如果是这种情况,您可以预先计算值并存储它们。

答案 1 :(得分:0)

您可以将此方法用于应用程序的可变高度支持。

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;

每当您想要动态设置高度时,请使用tableview对象调用此方法。

了解更多信息Click Here

或将此方法与其他tableview委托方法一起使用。

答案 2 :(得分:0)

单元格大小调整可能变得非常复杂,尤其是涉及UITextView时。我建议您只使用表格视图框架,例如 Sensible TableView ,其中所有单元格都会自动调整大小以适合内容。我相信他们现在也有免费版本。