私はiPad用のiOsアプリを開発しており、UIView内にUIImageViewを実装しています。問題は、画像ビューの位置がUIViewの内側にある位置にある場合、それを見ることができるということです。コード:
UIView *vistafunda = [[UIView alloc] initWithFrame:CGRectMake(512/2, 48, 525, 651)];
[self.view addSubview:vistafunda];
vistafunda.backgroundColor = [UIColor darkGrayColor];
UIImageView *img = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"hola.png"]];
img.center = CGPointMake(12, 200);
[vistafunda addSubview:img];
画像ビューは常にビューの下にあるようにしたいので、画像がビューの外側にあると見えません。ありがとう!