- 浏览: 773881 次
- 性别:
- 来自: 天堂
文章分类
最新评论
-
xiaozhao-521:
呀呀呀呀呀呀呀
RequestTest222 -
Andy_hyh:
打扰了,问下openmeeting源码可以运行起来吗?
Openmeetings安装 详细步骤 -
qindongliang1922:
擦,现在还行么,厉害
北京免费吃饭的地方 -
minixx77:
...
Openmeetings安装 详细步骤 -
wwwqqqiang:
喜欢楼主分享问题的方式,有思想
UIView 和 CALayer的那点事
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 自定义UIActionSheet
2012-12-18 16:07 16424一:模态视图 UIActi ... -
UIView 和 CALayer的那点事
2012-11-17 23:51 30782UIView 和 CALayer的那点事 (1 ... -
iOS Open Source : Popover API for iPhone
2012-01-20 15:02 1948http://iphonedevelopertips.com/ ... -
ios 任务、线程、定时器
2011-12-26 18:09 8032一:operations(任务) cocoa提供了三种 ... -
ios url缓存策略——NSURLCache、 NSURLRequest
2011-12-26 17:09 24360一:url 缓存策略 NSURLRequest ... -
ios NSInvocation简单使用
2011-12-22 16:39 6379在ios直接调用某个对象的消息是方法有两种: 一:perfo ... -
iphone 对Web Services的三种请求方式soap get post
2011-11-09 10:57 6444一:Using SO AP 1.1 POST / ... -
sdk3.2手势实例
2011-11-09 10:11 1747#import <UIKit/UIKit.h>@i ... -
关于iphone 利用hpple解析html的问题
2011-08-04 18:28 2229最近在用happe解析html中的图片。有个翻页操作,如果请 ... -
iphone hpple 解析html,xml
2011-07-19 16:21 2755使用Objective-C解析HTML或者XML,系统自带有两 ... -
激活 iPhone通过 GPRS 连接服务器功能的代码
2011-05-13 15:14 1663如果您的 iPhone 应用里含有连接服务器的功能,也许会遇到 ... -
address book api 图型
2011-04-28 15:51 1151最近要搞地址簿了,整理一下 -
[OmniGraffle]iPhone app原型制作工具
2011-04-06 17:35 3962在写程序之前,我们通常需要做一些mockup出来(不知道款爷有 ... -
自定义uislider 样式
2011-04-04 21:28 3844UIImage *stetchLeftTrack= [[UII ... -
iphone 下AsyncSocket网络库编程
2011-04-02 21:04 7647iphone的标准推荐CFNetwork ... -
进阶AlertView运用 - 登入设计
2011-04-01 17:52 3043说明:示范如何利用AlertView来制作系统登入的介面程式碼 ... -
iPad UIPopoverController弹出窗口的位置和坐标
2011-04-01 17:42 2008优化规则: TodoViewControlle ... -
iPhone系统自动化测试
2011-04-01 17:39 2624首先mac系统是必备的2 安装iPhone SD ... -
iphone上面编写具有root权限的程序
2011-04-01 17:31 6302正常途径下, 我们编写的程序发布在App store上, 使用 ... -
聊天。。。。。
2011-04-01 17:13 1095是得分手段
相关推荐
这个压缩包文件“IOS应用源码Demo-可以用手指左右滑动切换视图的效果demo-毕设学习.zip”包含了iOS应用开发中的一个常见功能——通过手势左右滑动来切换视图的示例代码。这种效果在许多移动应用中都可以看到,如社交...
2. **滑动手势(Swipe)**:`UISwipeGestureRecognizer`用于识别快速的滑动动作,如左滑、右滑、上滑和下滑。开发者需要根据滑动的方向来判断用户的意图。 3. **长按手势(Long Press)**:`...
- `UIPinchGestureRecognizer` 捕捉到用户手指的捏合和张开动作,常用于缩放图片、地图等。 5. **旋转手势(Rotation Gesture)**: - `UIRotationGestureRecognizer` 监测手指旋转的动作,主要用于图像的旋转...
苹果提供了多种内置手势识别器(Gesture Recognizers),如`UISwipeGestureRecognizer`、`UIPanGestureRecognizer`、`UITapGestureRecognizer`等,它们可以帮助我们轻松地识别和处理用户的触摸动作。 1. **...
- **捏合(PinchGestureRecognizer)**:识别两个手指捏合或分开的动作,常用于缩放操作。 - **拖拽(DragGestureRecognizer)**:追踪手指在屏幕上移动,常用于拖放功能。 - **屏幕边缘滑动...
- **UIPinchGestureRecognizer**:检测用户的手指捏合或张开动作,常用于缩放图片、地图等。 4. **旋转(Rotation Gestures)** - **UIRotationGestureRecognizer**:响应手指旋转手势,用于旋转对象,如图片或3D...
旋转手势用于识别用户旋转手指的动作,常用于调整图像或对象的角度。`UIRotationGestureRecognizer`类用于识别旋转,通过监听手势的旋转角度变化,可以改变相应元素的旋转角度。 5. **捏合(Pinch Gesture)** ...
1. **手势识别(Gesture Recognition)**:iOS SDK提供了多种手势识别类,如`UISwipeGestureRecognizer`,用于识别用户的手势动作,如左右滑动。开发者可以添加这些手势识别器到视图上,当用户执行特定手势时,相应...
UISwipeGestureRecognizer监听快速滑动的动作,而UIPanGestureRecognizer则可以跟踪更复杂的滑动手势,包括连续的拖动和释放。在这个效果中,UIPanGestureRecognizer可能更合适,因为它允许我们精确地控制滑动的距离...
- `UIRotationGestureRecognizer`识别两个手指旋转的运动,通常用于旋转图像或其他可旋转的对象。手势识别器会提供旋转角度的变化,开发者可以据此调整对象的角度。 5. **长按手势(Long Press Gesture)**: - `...
- **滑动手势识别**:用户在屏幕上向左或向右滑动一个列表项时,系统检测到这种手势并触发相应的动作。这需要对触摸事件进行监听和解析。 - **视图动画**:在滑动过程中,显示删除按钮或其他操作选项。这通常通过...
而手势则是预定义的一系列触控动作的组合,比如,我们熟知的“捏合”手势(Pinch)就是指用户将两个手指放在屏幕上并相互靠近的动作。 接下来,让我们详细探讨一下各种手势的定义与用途: 1. Tap手势:类似于桌面...
手势操作让应用程序更加直观和用户友好,使用户可以通过触摸屏幕的各种动作来触发相应的功能。本项目"ios手势操作演示"是一个使用Swift编写的示例,旨在帮助开发者理解和应用iOS中的手势识别技术。 Swift是Apple为...
4. **捏合手势(Pinch Gestures)**:对于查看大图功能,可能还支持双指捏合进行缩放,这需要使用UIPinchGestureRecognizer,检测手指的缩放动作。 5. **旋转手势(Rotation Gestures)**:虽然在商品详情界面不...
- 为了增加用户友好性,菜单通常有回弹效果,即当用户松开手指后,菜单会自动滑回到原来的位置。这可以通过物理模拟库如Android的`android.support.v4.widget.ViewDragHelper`或iOS的`UIPanGestureRecognizer`的...
5. **手势识别(Gesture Recognition)**:为了增加用户交互,轮播器通常会添加滑动手势,如`UISwipeGestureRecognizer`,允许用户手动切换图片。 6. **自动暂停与恢复**:当用户触摸屏幕时,轮播器通常会暂停自动...
Swift提供了多种内置手势识别器(Gesture Recognizers),如UIPanGestureRecognizer、UIPinchGestureRecognizer、UIRotationGestureRecognizer、UISwipeGestureRecognizer和UITapGestureRecognizer等。这些手势识别...
缩放手势主要用于识别两个手指同时在屏幕上的捏合或张开动作,常用于图片或视图的缩放。创建`UIPinchGestureRecognizer`并将其添加到视图,然后在相应的方法(如`pinGes:`)中,使用`ges.scale`属性来获取当前的...
当用户手指首次接触屏幕时触发`UIControlEventTouchDown`,移动时触发`UIControlEventTouchDragInside`,手指静止时触发`UIControlEventTouchStationary`,最后手指离开屏幕时触发`UIControlEventTouchUpInside`或`...
`TouchTest`可能还包含了多点触摸(multi-touch)的支持,这涉及到`UIPanGestureRecognizer`, `UIPinchGestureRecognizer`, `UIRotationGestureRecognizer`, 和 `UISwipeGestureRecognizer`等手势识别器。...