首页 > 代码库 > 使用UIScrollView

使用UIScrollView

  1. 创建UIScrollView对象并设置它的大小.

    UIScrollView *scrollView;

    self.scrollView = [[UIScrollViewalloc] initWithFrame:CGRectMake(0,0,w, h)];


  2. 设置代理

    self.scrollView.delegate =self;


  3. 设置content的大小.

    self.scrollView.contentSize =CGSizeMake(w, h);


  4. 设置是否可以滑动.

    self.scrollView.pagingEnabled =YES;


  5. 添加到视图

     [self.viewaddSubview:self.scrollView];


使用UIScrollView