DHCShakeNotifier 0.2.0

DHCShakeNotifier 0.2.0

测试已测试
语言语言 Obj-CObjective C
许可 MIT
发布最后发布2014年12月

Daniel Haight 维护。



  • 作者
  • Daniel Haight

一个微小的分类,包含一个方法,用于检测到晃动时发送 NSNotification :)

安装

手动

DHCShakeNotifier 的内容添加到您的项目中

用法

克隆/下载仓库并快速查看示例。

  1. 导入 DHCShakeNotifier

    #import "UIWindow+DHCShakeRecognizer.h"
    
  2. 通过添加 NSNotification 观察者来监听晃动通知

    @implementation YourObject
    
    ...
    
    -(id)init{
        if (self==[super init]) {
            [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(methodThatIsCalledAfterShake) name:@"CONJUShakeNotification" object:nil];
        }
       return self;
    }
    
    ...
    
    -(void)methodThatIsCalledAfterShake{
     NSLog(@"\"I have just been shaken\" - A martini after being ordered by James Bond");
    }
    
    ...
    
    -(void)dealloc{
        [[NSNotificationCenter defaultCenter] removeObserver:self name:DHCSHakeNotifName object:nil];
    }
    
    ...
    
    @end