1

私は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];

画像ビューは常にビューの下にあるようにしたいので、画像がビューの外側にあると見えません。ありがとう!

4

1 に答える 1

8

含まれているビュークリップを子にするだけです

vistafunda.clipsToBounds = YES;
于 2012-10-21T09:51:51.563 に答える