1

各セルに 3 が表示される UITableView を使用して、サムネイル画像のグリッドを作成しています。この段階では、配置/サイズを正しくするために 3 つの静的画像を配置しようとしています。しかし、サムネイル画像の位置とサイズを制御できません。1 つのサムネイル画像のコードは次のとおりです。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// after getting cell..

UIImage *image = [UIImage imageNamed:@"placeholder.png"];
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(50.0, 0.0, 85.0, 85.0)];
imageView = [[UIImageView alloc] initWithImage:image];        
[cell addSubview:imageView];

return cell;

}

UIImageView に設定することで画像の位置とサイズを制御するという私の理解は正しいですか?

助けてくれてありがとう。

4

1 に答える 1