如何同等地更改UITableView单元格高度&显示详细的文本标签?

时间:2012-06-09 22:30:47

标签: uitableview height cell detailtextlabel

嗨,我这里有这个代码。

- (void)viewDidLoad
{
    [super viewDidLoad];

    jsonURL = [NSURL URLWithString:@"http://oo.mu/json2.php"];
    jsonData = [[NSString alloc] initWithContentsOfURL:jsonURL usedEncoding:nil error:nil];
    self.jsonArray = [jsonData JSONValue];

    // Do any additional setup after loading the view, typically from a nib.
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [jsonArray count];
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return [indexPath row] * 20;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = (UITableViewCell *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
    }

    cell.textLabel.text = [[self.jsonArray objectAtIndex:indexPath.row] objectForKey:@"Name"];

    return cell;
}

我想要的是:

  1. 要更改UITableView单元格的高度,以便我可以适应更多 textLabel下的事情。 (目前,当我使用前一个 用于增加每个单元格UITableView单元格高度的代码 不同大小的从大到小)。

  2. 显示在textLabel.textdetailedTextLabel下     其下的其他东西。

  3. 我该怎么做?

    我试过了:

    cell.textLabel.text = [[self.jsonArray objectAtIndex:indexPath.row] objectForKey:@"Name"];
    cell.detailTextLabel.text = [[self.jsonArray objectAtIndex:indexPath.row] objectForKey:@"Street"];
    cell.detailTextLabel.text = [[self.jsonArray objectAtIndex:indexPath.row] objectForKey:@"City"];
    

    但它没有出现。

1 个答案:

答案 0 :(得分:0)

您可以根据需要创建具有尺寸的新UItableview单元格。后来

-(Uitableview) cellForIndexPath {
    //add the customized Uitableviewcell.
}

通过这种方式,您可以根据自己的要求创建tableview单元格。我希望它会有所帮助。