zoukankan      html  css  js  c++  java
  • 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.

        [[UIApplicationsharedApplicationsetApplicationSupportsShakeToEdit: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

        }

    }

    至于界面我就不写了~

  • 相关阅读:
    Spring中的AOP
    P2782 友好城市
    1576 最长严格上升子序列
    1058 合唱队形 2004年NOIP全国联赛提高组
    5294 挖地雷
    1643 线段覆盖 3
    4768 跳石头
    1026 逃跑的拉尔夫
    2727:仙岛求药
    codevs 4888 零件分组
  • 原文地址:https://www.cnblogs.com/yulang314/p/3713657.html
Copyright © 2011-2022 走看看