转自:http://o0o0o0o.iteye.com/blog/875333
tap是指轻触手势。类似鼠标操作的点击。从iOS 3.2版本开始支持完善的手势api:
- tap:轻触
- long press:在一点上长按
- pinch:两个指头捏或者放的操作
- pan:手指的拖动
- swipe:手指在屏幕上很快的滑动
- rotation:手指反向操作
这为开发者编写手势识别操作,提供了很大的方便,想想之前用android写手势滑动的代码(编写android简单的手势切换视图示例),尤其感到幸福。
这里写一个简单的tap操作。在下面视图的蓝色视图内增加对tap的识别:
当用手指tap蓝色视图的时候,打印日志输出:
代码很简单,首先要声明tap的recognizer:
UITapGestureRecognizer *recognizer=[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapFrom:)];
[infoView addGestureRecognizer:recognizer];
[recognizer release];
在这里:
- initWithTarget:self,要引用到Controller,因为一般这部分代码写在controller中,用self;
- action:@selector(handleTapFrom:),赋值一个方法名,用于当手势事件发生后的回调;
- [infoView addGestureRecognizer:recognizer],为view注册这个手势识别对象,这样当手指在该视图区域内,可引发手势,之外则不会引发
对应的回调方法:
-(void)handleTapFrom:(UITapGestureRecognizer *)recognizer{
NSLog(@">>>tap it");
}
controller相关方法完整的代码(包含了一些与本文无关的视图构建代码):
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView {
//去掉最顶端的状态拦
[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation: UIStatusBarAnimationSlide];
UIImage *image=[UIImage imageNamed:@"3.jpg"];
//创建背景视图
self.view=[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
UIImageView *backgroudView=[[UIImageView alloc] initWithImage:image];
[self.view addSubview:backgroudView];
/*
UIToolbar *toolBar=[[UIToolbar alloc] initWithFrame:CGRectMake(0, 1024-70, 768, 70)];
toolBar.alpha=0.8;
toolBar.tintColor = [UIColor colorWithRed:.3 green:.5 blue:.6 alpha:.1];
NSArray *items=[NSArray arrayWithObjects:[[UIBarButtonItem alloc] initWithTitle:@"test" style:UIBarButtonItemStyleDone target:self action:nil],nil];
toolBar.items=items;
[self.view addSubview:toolBar];
*/
UIView *bottomView=[[UIView alloc] initWithFrame:CGRectMake(0, 1024-70, 768, 70)];
bottomView.backgroundColor=[UIColor grayColor];
bottomView.alpha=0.8;
//UIButton *backButton=[[UIButton alloc] initWithFrame:CGRectMake(10, 10, 100, 40)];
UIButton *backButton=[UIButton buttonWithType: UIButtonTypeRoundedRect];
[backButton setTitle:@"ok" forState:UIControlStateNormal];
backButton.frame=CGRectMake(10, 15, 100, 40);
[bottomView addSubview:backButton];
[self.view addSubview:bottomView];
UIView *infoView=[[UIView alloc] initWithFrame:CGRectMake(200, 700, 768-400, 70)];
infoView.backgroundColor=[UIColor blueColor];
infoView.alpha=0.6;
infoView.layer.cornerRadius=6;
infoView.layer.masksToBounds=YES;
[self.view addSubview:infoView];
UITapGestureRecognizer *recognizer=[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapFrom:)];
[infoView addGestureRecognizer:recognizer];
[recognizer release];
}-(void)handleTapFrom:(UITapGestureRecognizer *)recognizer{
NSLog(@">>>tap it");
}
翻页效果,类似下面的样子:
在电子书应用中会很常见。这里需要两个要点:
- 翻页动画
- 手势上下轻扫(swipe)的处理
先说一下轻扫(swipe)的实现,可以参考编写简单的手势示例:Tap了解手势种类。
在viewDidLoad方法中注册了对上、下、左、右四个方向轻松的处理方法:
- (void)viewDidLoad {
UISwipeGestureRecognizer *recognizer;
recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFrom:)];
[recognizer setDirection:(UISwipeGestureRecognizerDirectionRight)];
[[self view] addGestureRecognizer:recognizer];
[recognizer release];
recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFrom:)];
[recognizer setDirection:(UISwipeGestureRecognizerDirectionUp)];
[[self view] addGestureRecognizer:recognizer];
[recognizer release];
recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFrom:)];
[recognizer setDirection:(UISwipeGestureRecognizerDirectionDown)];
[[self view] addGestureRecognizer:recognizer];
[recognizer release];
recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFrom:)];
[recognizer setDirection:(UISwipeGestureRecognizerDirectionLeft)];
[[self view] addGestureRecognizer:recognizer];
[recognizer release];
[super viewDidLoad];
可以看到,都是同一个方法,handleSwipeFrom。
在该方法中,再识别具体是哪个方向的轻扫手势,比如判断是向下的轻扫:
-(void)handleSwipeFrom:(UISwipeGestureRecognizer *)recognizer {
NSLog(@"Swipe received.");
if (recognizer.direction==UISwipeGestureRecognizerDirectionDown) {
NSLog(@"swipe down");判断是向上的轻扫:
if (recognizer.direction==UISwipeGestureRecognizerDirectionUp) {
NSLog(@"swipe up");有关动画的处理,比如向下(往回)翻页,类似这样:
[UIView beginAnimations:@"animationID" context:nil];
[UIView setAnimationDuration:0.7f];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationRepeatAutoreverses:NO];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:self.view cache:YES];[currentView removeFromSuperview];
[self.view addSubview:contentView];[UIView commitAnimations];
向上(向前)翻页,只需改为:
[UIView beginAnimations:@"animationID" context:nil];
[UIView setAnimationDuration:0.7f];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationRepeatAutoreverses:NO];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];[currentView removeFromSuperview];
[self.view addSubview:contentView];[UIView commitAnimations];
如果是电子书,还需要考虑一个问题,就是有多个页面(图形),比如50页。那么需要有一个数据结构来保存这些页面的图片路径:
- objc数据结构,比如数组
- sqlite数据库表
这样,写一套翻页代码和加载什么图形之间就可以解耦。
本文示例使用的是数组,类似这样:
pages=[[NSArray alloc] initWithObjects:@"1.jpg",@"2.jpg",@"3.jpg",@"4.jpg",@"5.jpg",@"6.jpg",
nil];图片保存在resources下。
为了能让上页下页翻页的时候找到关联的页面,采用了如下机制:
- 将图片封装为UIImageView显示
- 可以为UIImageView设置一个tag值,值为数组下标+1
- 这样,上级view有方法能根据tag查询到UIImageView,比如:UIView *currentView=[self.view viewWithTag:currentTag];
- 设置一个成员变量currentTag保存当前的tag值
比如这样,当应用加载的时候显示第一页:
currentTag=1;
NSString *path = [[NSBundle mainBundle] pathForResource:@"pageflip1" ofType:@"mp3"];
player=[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
//[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO];
[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation: UIStatusBarAnimationSlide];
UIImageView *contentView = [[UIImageView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
[contentView setImage:[UIImage imageNamed:[pages objectAtIndex:(currentTag-1)]]];
[contentView setUserInteractionEnabled:YES];
contentView.tag=currentTag;在翻页时的处理:
if (currentTag<[pages count]) {
UIView *currentView=[self.view viewWithTag:currentTag];
currentTag++;
UIImageView *contentView = [[UIImageView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
[contentView setImage:[UIImage imageNamed:[pages objectAtIndex:(currentTag-1)]]];
[contentView setUserInteractionEnabled:YES];
contentView.tag=currentTag;
[UIView beginAnimations:@"animationID" context:nil];
[UIView setAnimationDuration:0.7f];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationRepeatAutoreverses:NO];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];
[currentView removeFromSuperview];
[self.view addSubview:contentView];
[UIView commitAnimations];
相关推荐
"ios-Objective-C翻页动画.zip"这个压缩包显然包含了关于如何在Objective-C中实现翻页动画的相关资源,这通常涉及到UI设计中的过渡效果,为用户提供更加直观和吸引人的交互体验。 翻页动画是iOS应用中常见的一种...
本示例“iOS中UIView的翻页动画demo”旨在演示如何为UIView实现逼真的翻页效果,让用户体验如同翻阅实体书页一样的平滑过渡。在实际应用中,这种动画效果通常用于电子书籍、杂志应用或任何需要模拟页面翻动的地方。 ...
`pageCurl`和`unCurl`方法分别用于开启和关闭翻页动画。 4. **自定义转场动画(Custom Transition Animations)** 自定义转场动画允许开发者完全控制页面过渡的效果。通过实现`...
3. **自定义视图**: 为了实现翻页效果,开发者可能创建了一个自定义的UIView子类,该子类重写了`drawRect:`方法来绘制每一页的时间,并使用Core Animation来处理翻页动画。 4. **SBTicker库**: 这个库提供了一个...
总的来说,实现iOS的91熊猫翻页效果涉及到的知识点包括:手势识别、Core Animation、UIView动画、自定义视图、图形编程以及性能优化。这是一个综合性的项目,需要对iOS开发有深入的理解才能做得既美观又流畅。通过...
5. **手势识别**:通过使用UIPanGestureRecognizer或UIRotationGestureRecognizer,我们可以识别用户的滑动和旋转手势,这些手势可以驱动翻页动画。 6. **PDFKit**:自iOS 11起,苹果引入了PDFKit,这是一个官方...
本篇文章主要介绍了iOS实现翻页效果动画实例代码的实现思路和代码实现,包括基本思路、主要代码实现和手势控制的翻页效果实现。通过本篇文章,读者可以了解iOS实现翻页效果动画实例代码的实现思路和代码实现,提高...
本篇将深入探讨iOS中实现翻页效果的关键技术和相关知识点。 一、Quartz 2D与Core Animation iOS中的翻页效果主要依赖于Quartz 2D和Core Animation这两个图形绘制框架。Quartz 2D是基于矢量图形的2D绘图系统,它...
用户的手势被捕捉后,触发相应的翻页动画。 6. **模型视图控制器(MVC)**设计模式: - 在iOS开发中,通常遵循MVC模式来组织代码。在这个项目中,模型可能包含书籍或页面的数据,视图负责展示并处理动画,而控制器则...
虽然`UIPageViewController`已经提供了默认的翻页动画,但有时我们可能想要自定义更独特的效果。这可以通过实现`UIPageViewControllerDelegate`的`pageViewController(_:willTransitionTo:with:)`方法来完成。在这个...
在iOS中,我们可以使用`UIView`的动画方法,如`animate(withDuration:animations:)`,来模拟真实的翻页动画。这种动画可能包括页面的平滑滑动、透视变形等效果,以达到类似真实书籍翻页的视觉体验。此外,为了实现更...
综上所述,实现“iOS ScrollView自动翻页”涉及到了iOS开发中的定时器使用、动画效果创建、页面控制、边界条件处理、性能优化等多个方面。开发者需要根据具体需求选择合适的方法,并确保用户体验的顺畅和自然。在...
这些信息需要在代码中正确解析并应用于视图,以确保翻页动画的正确执行。 总结来说,实现iOS的翻页效果涉及到UIKit Dynamics、Core Animation、手势识别和视图布局等多个方面。开发者需要掌握这些基础技术,并根据...
2. **翻页动画**:为了达到电子书的效果,我们需要实现翻页动画。这通常涉及到自定义视图层的绘制,利用Core Animation进行动画控制,使页面在翻动时产生逼真的视觉效果。 3. **性能优化**:由于PDF文件可能包含...
双翻页效果是通过复杂的计算和动画技术来模拟物理世界的翻书动作,这涉及到视图控制器(UIViewController)的管理、手势识别(Gesture Recognizer)的应用以及自定义动画的实现。在iOS中,我们可以使用UIKit框架中的...
翻页动画通常是通过Core Animation来实现的,这是iOS中的一个强大的2D图形和动画库。开发者可以通过CAKeyframeAnimation或CATransition等类来创建复杂的动画效果,模拟真实的纸张翻页动作。例如,可以设置关键帧动画...
【描述】中的信息简洁明了,只提到了“IOS应用源码之翻页效果”,意味着这个项目专注于在iOS应用开发中实现翻页动画,可能包括了用户界面的交互逻辑和视觉特效。 【标签】"IOS"明确了这个项目与苹果公司的iOS操作...
总的来说,"ios-卡片翻页拖拽.zip" 文件包含了一个实现卡片翻页和拖拽效果的完整示例,涉及了iOS开发中的手势识别、视图动画、3D变换等多个关键技术。开发者可以通过研究这个项目来学习如何在自己的应用中实现类似的...
总的来说,实现“ios 卷边的翻页效果”需要对iOS的图形渲染和动画机制有深入的理解,同时也需要一定的艺术感觉去调整细节,使动画看起来更加自然。通过不断试验和优化,开发者可以创造出既美观又实用的翻页体验,...
5. **Core Animation**:可能被用来创建翻页动画,通过CAKeyframeAnimation或CATransition等类实现复杂的视图转换效果。 6. **图片加载策略**:考虑到性能和用户体验,可能会使用异步加载图片的技术,如SDWebImage...