我有一个问题,如何在 UIView 中添加 UIScrollView,以便 UIScrollView 可以正常工作。
UIScrollView *scroll = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, container.frame.size.width/2, container.frame.size.height/2)];
scroll.pagingEnabled = YES;
scroll.scrollEnabled = YES;
[scroll setBackgroundColor:[UIColor redColor]];
NSInteger numberOfViews = 3;
for (int i = 0; i < numberOfViews; i++)
{
CGFloat xOrigin = i * container.frame.size.width/2;
UIView *awesomeView = [[UIView alloc] initWithFrame:CGRectMake(xOrigin, 0, container.frame.size.width, container.frame.size.height)];
awesomeView.backgroundColor = [UIColor colorWithRed:0.5/i green:0.5 blue:0.5 alpha:1];
[scroll addSubview:awesomeView];
[awesomeView release];
}
scroll.contentSize = CGSizeMake(container.frame.size.width/2 * numberOfViews, container.frame.size.height);
[container addSubview:scroll];
以上代码来自教程: http: //idevzilla.com/2010/09/16/uiscrollview-a-really-simple-tutorial/ 但它对我不起作用。
编辑:
如果您有一个问题,您已正确设置滚动视图但它不起作用,请确保您没有与另一个 UIView 覆盖您的滚动视图。那是我的问题。 解决了!