首先,您必须向 UIScrollSiew 添加一些内容作为滚动子视图,如果 UIScrollView 上没有内容,您如何滚动?这是我所做的,只需将 UIImageView 添加到 UIScrollView 作为大小与 UIScrollView 大小相同的子视图...
在 viewDidLoad 方法中尝试以下代码..
-(void)viewDidLoad
{
UIScrollView *scroll=[[UIScrollView alloc] init];
scroll.frame=CGRectMake(0, 0, 320, 460);
UIImageView *imageView=[[UIImageView alloc] init];
imageView.frame=CGRectMake(0, 0, 320,460);
imageView.image=[UIImage imageNamed:@"chiranjeevi.jpeg"];
scroll.contentSize = CGSizeMake(4500, 460);
[scroll setScrollEnabled:YES];
[scroll addSubview:imageView];
[self.view addSubview:scroll];
}
我测试了这段代码,它运行良好。我希望这段代码对你有所帮助..