当我滚动时,我无法滚动到 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];
对此问题的任何帮助表示赞赏。(对不起我的英语不好:()
谢谢。