より詳細な表セルを作成したい。私が見つけた例は、reddit.com クライアントの AlienBlue です。各セルには、画像、投稿のタイトル、その下に他の 4 つのテキストがあります。表のセルにテキストを「重ねる」にはどうすればよいですか?
質問する
89 次
4 に答える
6
こんにちは、テーブル ビューのセルのカスタム ユーザー インターフェイスのUITableViewCellをサブクラス化する必要があります。テーブルビューに関するその他のオプションについては、UITableViewDataSourceおよびUITableViewDelegateも参照してください。
おそらく、サブクラス化された UiTableViewCell には、タイトル (UILabel)、キャプション (UILabel)、画像 (UIImageView) のカスタム フィールドがあります。
例:
于 2013-05-07T03:53:36.943 に答える
2
カスタムを作成する必要がありますUITableViewCell
。それは非常に些細なことであり、完全にコード (私のお気に入り) で行うことも、IB を介して行うこともできます。
Googlecustom UITableView cell
ですばらしいチュートリアルを探してください。
于 2013-05-07T03:47:19.570 に答える
1
- NSArray や NSMutableArray ではなく、 NSMUtableDictionaryのNSMutableArrayを使用して、データ (文字列、画像など) を保持します。
- テーブルがdetailedTextLabel(cell.detailTextLabel.text)を表示できるように、テーブルのセルスタイルプロパティをUITableViewCellStyleSubtitleに設定します。
- 表のセルに画像を設定できます。
例
- (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 に答える