UIScrollView
を作成しました。スクロールビューにUIButton
を配置しようとしています。しかし、アプリケーションをビルドして実行するとスクロールビューは正常に動作しますが、UIButton
は表示されません。UIScrollViewはUIButtonをカバーします
インターフェイスビルダー内でUIButton IBOutlet
をリンクします。
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
scrollView = [[UIScrollView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
scrollView.backgroundColor = [UIColor blackColor];
scrollView.delegate = self;
scrollView.bounces = NO;
backgroundImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"auckland-300.jpg"]];
image = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"249a-134206f1d00-1342071f5d9.ImgPlayerAUCKLAND.png"]];
// Note here you should size the container view appropriately and layout backgroundImage and image accordingly.
containerView = [[UIView alloc] initWithFrame:CGRectMake(0,0,601,601)];
playButton = [[UIButton alloc] init]; //test button cannot see it.
[containerView addSubview:backgroundImage];
[containerView addSubview:image];
scrollView.contentSize = containerView.frame.size;
[scrollView addSubview:containerView];
scrollView.minimumZoomScale = 0.5;
scrollView.maximumZoomScale = 31.0;
[scrollView setZoomScale:scrollView.minimumZoomScale];
self.view = scrollView;
}
すべてのヘルプは
* scrollViewまたは* above * scrollViewにUIButton *を追加しますか?スクロールビューの上に – akashivskyy
が表示されるので、ボタンに影響を与えずにズームしてスクロールすることができます。 –