0

より詳細な表セルを作成したい。私が見つけた例は、reddit.com クライアントの AlienBlue です。各セルには、画像、投稿のタイトル、その下に他の 4 つのテキストがあります。表のセルにテキストを「重ねる」にはどうすればよいですか?

4

4 に答える 4

6

こんにちは、テーブル ビューのセルのカスタム ユーザー インターフェイスのUITableViewCellをサブクラス化する必要があります。テーブルビューに関するその他のオプションについては、UITableViewDataSourceおよびUITableViewDelegateも参照してください。

おそらく、サブクラス化された UiTableViewCell には、タイトル (UILabel)、キャプション (UILabel)、画像 (UIImageView) のカスタム フィールドがあります。

例:

  1. カスタム UITableView セルの作成

  2. UITableView のテーブル ビュー セルをカスタマイズする

于 2013-05-07T03:53:36.943 に答える
2

カスタムを作成する必要がありますUITableViewCell。それは非常に些細なことであり、完全にコード (私のお気に入り) で行うことも、IB を介して行うこともできます。

Googlecustom UITableView cellですばらしいチュートリアルを探してください。

于 2013-05-07T03:47:19.570 に答える
1
  1. NSArray や NSMutableArray ではなく、 NSMUtableDictionaryNSMutableArrayを使用して、データ (文字列、画像など) を保持します。
  2. テーブルがdetailedTextLabel(cell.detailTextLabel.text)を表示できるように、テーブルのセルスタイルプロパティをUITableViewCellStyleSubtitleに設定します。
  3. 表のセルに画像を設定できます。

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

if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
// Configure the cell...
UIImage *image = [[list1 objectAtIndex:indexPath.row] objectForKey:key1a];
cell.imageView.image = image;
NSString *categoryname = [[list1 objectAtIndex:indexPath.row] objectForKey:key1b];
cell.textLabel.text = categoryname;
cell.detailTextLabel.text = [[list1 objectAtIndex:indexPath.row] objectForKey:key1e];
cell.detailTextLabel.textColor = [UIColor blueColor];
return cell;
}
于 2013-05-07T04:00:51.653 に答える
0
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {

        static NSString *CellIdentifier = @"Cell";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (cell == nil) 
        {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        }

        cell.textLabel.text=[NSString stringWithFormat:@"%@",[appdelegate.name objectAtIndex:indexPath.row]];

        UIImage *image = [[array1 objectAtIndex:indexPath.row];

        cell.detailTextLabel.text = [[array1 objectAtIndex:indexPath.row];


        return cell;
     }
于 2013-05-07T04:23:20.070 に答える