//声明一个UIScrollView并改变他的ContentSize使其可以垂直滚动
UIScrollView*scrollView = [[UIScrollViewalloc]initWithFrame:self.view.bounds];
[scrollViewsetContentSize:CGSizeMake(0,1000)];
//声明一个背景图片
UIImage*backImg =[UIImageimageNamed:@"bg"];
//将刚刚生成的图片转换为UIColor对象。这样便可以实现平铺了
UIColor*bc =[UIColorcolorWithPatternImage:backImg];
//设置scrollView背景
[scrollViewsetBackgroundColor:bc];
[self.viewinsertSubview:scrollViewatIndex:0];
网友评论