1 UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:self.view.bounds]; 2 //将scrollView添加到当前的view中 3 [self.view addSubview:scrollView]; 4 //必须设定contentSize属性。contentSize属性用于指定滚动视图可以滚动的区域 5 scrollView.contentSize = CGSizeMake(self.view.frame.size.width, 40 * 20); 6 7 //后面就可以在scrollView上添加子View了
原文:https://www.cnblogs.com/luoluosha/p/11679048.html