スクロールすると、UIView の最後までスクロールできません。
私の UIScrollView の高さは 450 で、スクロールビュー内の UIView の高さは 800 です。問題は、scrollView が UIView の最後に到達できないことです...ある点までしかスクロールせず、UIView のコンテンツがそれ以上表示されません。(ストーリーボードを使用しています)
scrollView と UIView を開始するための私のコードは次のとおりです。
[super viewDidLoad];
[scrollView setBackgroundColor:[UIColor blackColor]];
[scrollView setCanCancelContentTouches:NO];
scrollView.clipsToBounds = YES;
scrollView.indicatorStyle = UIScrollViewIndicatorStyleWhite;
[scrollView addSubview:content];
//NSLog(@" %f %f",content.frame.size.width,content.frame.size.height);
[scrollView setContentSize:CGSizeMake(content.frame.size.width, content.frame.size.height )];
//NSLog(@" %f %f",scrollView.frame.size.width,scrollView.frame.size.height );
[scrollView setScrollEnabled:YES];
この問題に関するヘルプをいただければ幸いです。(下手な英語でごめんなさい:( )
ありがとう。