当前位置:  编程技术>移动开发
本页文章导读:
    ▪贪食蛇项目开发出现的有关问题        贪食蛇项目开发出现的问题。   昨天突然想弄了手机游戏,贪食蛇,开发过程会出现一些问题,我想说把这些问题都写在博客上,然后再把解决方法写上去,这样随着项目的开发,问题的发.........
    ▪ 运用手指動態來切換UIView(採用UISwipeGestureRecognizer)        使用手指動態來切換UIView(採用UISwipeGestureRecognizer) 使用手指動態來切換UIView,意思就是說當手指頭接觸螢幕然後橫向或是縱向劃過螢幕後,就可以切換不同的畫面。關於手指動態偵測的API,.........
    ▪ UISwipeGestureRecognizer -指头动作       UISwipeGestureRecognizer ---手指动作 tap是指轻触手势。类似鼠标操作的点击。从iOS 3.2版本开始支持完善的手势api: tap:轻触 long press:在一点上长按 pinch:两个指头捏或者放的操作 pan:手指的.........

[1]贪食蛇项目开发出现的有关问题
    来源: 互联网  发布时间: 2014-02-18
贪食蛇项目开发出现的问题。

  昨天突然想弄了手机游戏,贪食蛇,开发过程会出现一些问题,我想说把这些问题都写在博客上,然后再把解决方法写上去,这样随着项目的开发,问题的发现和解决,都记录在博客上。个人感觉:不过的方法,至少挺有趣的。

 因为我的手机是nokia5310,所以用WTK的屏幕显然点小,所以我打算把屏幕变大点,但是到WTK中修改屏幕宽度,出来的想过就是屏幕很难看,把原来的方向键都遮掉了,所以想说去下载nokia的模拟器来制作,但是安装了nokia的模拟器,他要求java的jdk为1.5,出来的界面也不是5310的界面,今天要解决的就是怎样把模拟器弄好。。

  问题已经解决:不需要去调用nokia的模拟器,直接把WTK的模拟器换成defaultColor的,它的屏幕大小就是320*240的。


    
[2] 运用手指動態來切換UIView(採用UISwipeGestureRecognizer)
    来源: 互联网  发布时间: 2014-02-18
使用手指動態來切換UIView(採用UISwipeGestureRecognizer)

使用手指動態來切換UIView,意思就是說當手指頭接觸螢幕然後橫向或是縱向劃過螢幕後,就可以切換不同的畫面。
關於手指動態偵測的API,主要是UIGestureRecognizer,他衍生的subclass包含,

UITapGestureRecognizer
UIPinchGestureRecognizer
UIRotationGestureRecognizer
UISwipeGestureRecognizer
UIPanGestureRecognizer
UILongPressGestureRecognizer

以UISwipeGestureRecognizer為例,若要讓UIView具備手指動態的偵測,必須先行宣告swipe gesture recognizer然後設定recognizer接收到手指動態事件之後,誰要對這個事件作反應。

//宣告UISwipeGestureRecognizer,同時指定target及action
//self 將對手指動態事件執行switchViews的反應
UISwipeGestureRecognizer *swipeGestureRecognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self
action:*selector(switchViews)];

//指定偵測手指劃過螢幕的方向為由右至左
swipeGestureRecognizer.direction = UISwipeGestureRecognizerDirectionLeft;

//加入swipe gesture recognizer到主要的viewcontroller中
[self.view addGestureRecognizer:swipeGestureRecognizer];

//釋放swipeGestureRecognizer所佔的記憶體
[swipeGestureRecognizer release];

設定完swipe gesture recoginzer之後,各位就可以在switchViews方法中加入所需的code來切換不同的畫面(UIView)


    
[3] UISwipeGestureRecognizer -指头动作
    来源: 互联网  发布时间: 2014-02-18
UISwipeGestureRecognizer ---手指动作

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];


    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
▪Android实现退出时关闭所有Activity的方法
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
▪Android程序设计之AIDL实例详解
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
▪Android消息处理机制Looper和Handler详解
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3