我的UIViewController
内置UIScrollView
,所有内容都正确显示在滚动视图中,但出于某种原因,我无法滚动浏览,所有按钮都没有响应。
UIScrollView *_scrollView;
_scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 768, 1024)];
_scrollView.pagingEnabled = YES;
_scrollView.showsHorizontalScrollIndicator = NO;
_scrollView.showsVerticalScrollIndicator = NO;
_scrollView.delegate = self;
_scrollView.backgroundColor = [UIColor redColor];
[self.view addSubview:_scrollView];
NSInteger yPos = 175;
for(Issue *issue in _dataModel.issues)
{
// Create some items and add them to the scrollview
[_scrollView addSubview:tmpItem.view];
yPos += 140;
}
_scrollView.contentSize = CGSizeMake(768, yPos + 50);
我正确设置了contentSize,我在不同的视图中使用相同的技术,它只是工作正常。 不知道我在这里遗失了什么。
答案 0 :(得分:2)
这样希望它能解决你的问题。
scrollView=[[UIScrollView alloc] initWithFrame:CGRectMake(0, 0,320, 460)];
[scrollView setScrollEnabled:YES];
[scrollView setContentSize:CGSizeMake(320,600)];
[self.view addSubView:scrollView];