web-dev-qa-db-ja.com

UIViewのインスタンスへのサブビューとしてのUIImageビューの追加

私は新しいので初心者のコードを練習していて、ここでたくさんの混乱に遭遇しました...これがこれまでのところです

UIView *catView = [[UIView alloc] init];
UIImage *image = [UIImage imageNamed:@"lolcat.png"];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
[catView.view addSubview:imageView];

私は何がなぜここに間違っているのか理解できません、誰かが助けてもらえますか?

15
Danny Swan
//You need to specify the frame of the view   
UIView *catView = [[UIView alloc] initWithFrame:CGRectMake(0,0,320,400)];

UIImage *image = [UIImage imageNamed:@"lolcat.png"];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];

//specify the frame of the imageView in the superview , here it will fill the superview
imageView.frame = catView.bounds;

// add the imageview to the superview
[catView addSubview:imageView];

//add the view to the main view

[self.view addSubview:catView];
28
soryngod

興味深い、微妙なメモ。ビューが.xibファイルに既に追加されている場合、ビューは「弱い」ので、一時変数と交換する必要があります。また、ビューで設定した座標と一致するように座標を取得するいくつかの簡単な数学:

@property (weak, nonatomic) IBOutlet UIImageView *imageView1;
@property (weak, nonatomic) IBOutlet UIImageView *imageView2;
CGRect tempFrame; 

tempFrame = self.imageView1.frame;

CGRect tempFrame;   // use bounds instead

tempFrame = self.imageView2.frame;

__strong UIImageView * tempView = self.imageView2;
[self.imageView2 willMoveToSuperview: nil];
[self.imageView2 removeFromSuperview];
[self.imageView2 willMoveToSuperview: self.imageView1];
[self.imageViewSkate addSubview: self.imageViewBall];
self.imageView2.frame = CGRectMake(tempFrame.Origin.x - self.imageView1.frame.Origin.x,
                                      tempFrame.Origin.y - self.imageView1.frame.Origin.y,
                                      tempFrame.size.width, tempFrame.size.height);
tempView = nil;
0
snibbe