0

こんにちは、ここにこのコードがあります。

- (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.textするdetailedTextLabel

どうすればいいですか?

私は試した:

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"];

しかし、それは現れません。

4

1 に答える 1

0

要件に応じて、ディメンションを使用して新しい UItableview セルを作成できます。後で

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

このようにして、要件に応じてテーブルビュー セルを作成できます。それが役立つことを願っています。

于 2012-06-22T07:36:48.597 に答える