UIScrollView没有响应
我有一个UIViewController
里面有一个UIScrollView
,所有的内容都显示在正确的滚动视图,但由于某种原因,我不能滚动通过它,所有的button都没有响应。
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,我在不同的视图中使用了相同的技术,并且在那里工作正常。 不知道我是否在这里失去了一些东西。
做这个希望它会解决你的问题。
scrollView=[[UIScrollView alloc] initWithFrame:CGRectMake(0, 0,320, 460)]; [scrollView setScrollEnabled:YES]; [scrollView setContentSize:CGSizeMake(320,600)]; [self.view addSubView:scrollView];