zoukankan      html  css  js  c++  java
  • IOS端的摇一摇功能

    //微信的摇一摇是怎么实现的~发现原来 ios本身就支持
    //在 UIResponder中存在这么一套方法
     
    - (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_3_0);
     
    - (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_3_0);
     
    - (void)motionCancelled:(UIEventSubtype)motion withEvent:(UIEvent *)event __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_3_0);
     
    //这就是执行摇一摇的方法。那么怎么用这些方法呢?
     
    //很简单,你只需要让这个Controller本身支持摇动
     
    //同时让他成为第一相应者:
     
    - (void)viewDidLoad
     
    {
     
        [superviewDidLoad];
     
    // Do any additional setup after loading the view, typically from a nib.
     
        [[UIApplicationsharedApplication] setApplicationSupportsShakeToEdit:YES];
     
        [selfbecomeFirstResponder];
     
    }
     
      
     
    //然后去实现那几个方法就可以了
     
    - (void) motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event
     
    {
     
        //检测到摇动
     
    }
     
      
     
    - (void) motionCancelled:(UIEventSubtype)motion withEvent:(UIEvent *)event
     
    {
     
        //摇动取消
     
    }
     
      
     
    - (void) motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event
     
    {
     
        //摇动结束
     
        if (event.subtype == UIEventSubtypeMotionShake) {
     
            //something happens
     
        }
     
    }
    花开花谢春不管,水暖水寒鱼自知.
  • 相关阅读:
    《leetcode42接雨水》
    《84. 柱状图中最大的矩形》
    [bzoj1565][NOI2009]植物大战僵尸
    [bzoj1497][NOI2006]最大获利
    [洛谷P4092][HEOI2016/TJOI2016]树
    [洛谷P3760][TJOI2017]异或和
    [洛谷P3758][TJOI2017]可乐
    [洛谷P3761][TJOI2017]城市
    [Uva11134]Fabled Rooks
    又是一年叶落时
  • 原文地址:https://www.cnblogs.com/taintain1984/p/3262185.html
Copyright © 2011-2022 走看看