码迷,mamicode.com
首页 > 移动开发 > 详细

IOS UIScrollView背景色 及滑动范围设定

时间:2014-11-07 14:51:49      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   ar   os   sp   on   log   html   

@interface ViewController ()

@end


@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    _scrollview1.backgroundColor = [UIColor greenColor];//设置背景色 绿色
    _scrollview2.backgroundColor = [UIColor yellowColor];//设置背景色 黄色
    _scrollview1.frame = CGRectMake(0, 0, 80, 1000);//<span style="font-family: Arial, Helvetica, sans-serif;">固定 scrollview1位置及大小</span>
    _scrollview2.frame = CGRectMake(80, 20, 240, 550);//<span style="font-family: Arial, Helvetica, sans-serif;">固定 scrollview2位置及大小</span><pre name="code" class="html">
NSLog(@"%f,%f",_scrollview1.frame.origin.x, _scrollview1.frame.origin.y);//输出坐标 NSLog(@"%f,%f",_scrollview2.frame.origin.x, _scrollview2.frame.origin.y); // Do any additional setup after loading the view, typically from a nib.}//确定滑动范围 超出才会有滑动效果-(void) viewDidAppear:(BOOL)animated{ _scrollview1.contentSize = CGSizeMake(80, 900); _scrollview2.contentSize = CGSizeMake(240, 900); }


IOS UIScrollView背景色 及滑动范围设定

标签:style   io   color   ar   os   sp   on   log   html   

原文地址:http://blog.csdn.net/jichunw/article/details/40892387

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!