ViewController.m
--------------------------------------------------
(void)viewDidLoad {
[super viewDidLoad]
// Do any additional setup after loading the view, typically from a nib.
//大图片滑动
UIScrollView *scrollView = [[UIScrollView alloc] init]
scrollView.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height)
scrollView.backgroundColor = [UIColor grayColor]
[self.view addSubview:scrollView]
UIImageView *imageView = [[UIImageView alloc] init]
imageView.image = [UIImage imageNamed:@"xingkong.jpg"]
CGFloat imgW = imageView.image.size.width
CGFloat imgH = imageView.image.size.height
imageView.frame = CGRectMake(0, 0, imgW, imgH)
[scrollView addSubview:imageView]
//设置UIScrollView的滚动范围(内容大小)
scrollView.contentSize = imageView.image.size
}-
Demo