了解iPhone应用中UIScrollView的使用方法

移动开发 iOS
本文主要是让我们了解iPhone应用中UIScrollView的使用方法,本文通过一个实例来学习UIScrollView的使用方法,来看内容。

了解iPhone应用中UIScrollView的使用方法是本文要介绍的内容,主要是实现UIScrollView可以产生画轴的效果,可以在手机屏中左右滑动。先来看内容。

初始化代码为:

  1. mainView = [[UIScrollView alloc] initWithFrame:CGRectMake(0.0, 0.0, self.view.frame.size.width, 400)];  
  2. mainView.directionalLockEnabled = YES;  
  3. mainView.pagingEnabled = YES;  
  4. mainView.backgroundColor = [UIColor blueColor];  
  5. mainView.showsVerticalScrollIndicator = NO;  
  6. mainView.showsHorizontalScrollIndicator = NO;  
  7. mainView.delegate = self;  
  8. CGSize newSize = CGSizeMake(self.view.frame.size.width * 2,  self.view.frame.size.height);  
  9. [mainView setContentSize:newSize];  
  10. [self.view addSubview:mainView];  
  11. pageControl = [[UIPageControl alloc] initWithFrame:CGRectMake(0.0, 401, self.view.frame.size.width, 80)];  
  12. pageControl.hidesForSinglePage = YES;  
  13. pageControl.userInteractionEnabled = NO;  
  14. pageControl.backgroundColor = [UIColor redColor];  
  15. [self.view addSubview:pageControl];  
  16. UIView *view1=[[UIView alloc] initWithFrame:CGRectMake(0.0, 0.0, self.view.frame.size.width, self.view.frame.size.height)];  
  17. view1.backgroundColor=[UIColor redColor];  
  18. [mainView addSubview:view1];  
  19. UIView *view2=[[UIView alloc] initWithFrame:CGRectMake(self.view.frame.size.width, 0.0, self.view.frame.size.width, self.view.frame.size.height)];  
  20. view2.backgroundColor=[UIColor blueColor];  
  21. [mainView addSubview:view2];  

滑动的事件为:

  1. #pragma mark -  
  2. #pragma mark UIScrollView  
  3. - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{  
  4.  if ([scrollView isKindOfClass:[UITableView class]]) {  
  5.   return;  
  6.  }  
  7.    
  8.  int index = fabs(scrollView.contentOffset.x) / scrollView.frame.size.width;  
  9.    
  10.  pageControl.currentPage = index;  
  11.  
  12.  //index为当前页码  
  13.  NSLog(@"%d",index);  

小结:了解iPhone应用中UIScrollView的使用方法的内容介绍完了,希望本文对你有所帮助!

责任编辑:zhaolei 来源: 互联网
相关推荐

2011-08-10 16:08:02

iPhoneProtocol协议

2011-08-08 14:07:49

iPhone开发 字体

2011-07-21 15:05:14

iPhone 数据库

2011-07-26 16:33:56

iPhone Delegate

2011-08-05 14:58:58

iPhone CoreAnimat 动画

2011-08-15 11:23:41

iPhone开发循环滚动UIScrollVie

2011-08-02 15:55:31

Objective-C NSAutorele

2011-08-11 17:00:33

iPhone数据库SQLite

2011-08-16 16:40:06

iPhone应用正则表达式OgreKit

2011-07-28 13:59:40

iPhone App

2010-10-08 14:27:25

JavascriptSplit

2011-06-14 10:18:58

QThread Qt 线程

2010-10-09 10:30:03

JS event

2011-07-21 15:20:31

iPhone SDK 多线程

2017-06-07 10:00:56

PythonBeautifulSo解析器

2010-07-05 09:38:47

LinuxNFS

2024-07-11 14:05:28

JavaScript函数

2010-03-10 11:11:16

Python编程

2011-02-14 10:21:04

Windows PowWMI

2009-06-12 18:35:33

JSF f:loadB
点赞
收藏

51CTO技术栈公众号