iOS distance sensor and shake shake

Source: Internet
Author: User

distance sensor , implemented in the form of registered notifications

#import "ViewController.h"

@interface viewcontroller ()

@end

@implementation Viewcontroller

-(void) viewdidload {

[Super viewdidload];

//1. Open distance sensor

[uidevice currentdevice]. proximitymonitoringenabled=YES;

//2 Registration notification for monitoring

[[nsnotificationcenter defaultcenter]addobserver:self selector:@ Selector(proximitymonitoring) name:uideviceproximitystatedidchangenotification Object:nil];

}

-(void) proximitymonitoring

{

BOOL state=[uidevice currentdevice]. Proximitystate;

if (state) {

NSLog(@ " near ");

}

Else

{

NSLog(@ " far ");

}

}

-(void) Motionbegan: (uieventsubtype) motion withevent: (uievent *) event

{

NSLog(@ " mobile phone comes with , shake phone trigger event ");

}

-(void) motionended: (uieventsubtype) motion withevent: (uievent *) event

{

NSLog(@ " Shake end ");

}

-(void) motioncancelled: (uieventsubtype) motion withevent: (uievent *) Event

{

NSLog(@ " shake is terminated to trigger event ( incoming call )");

}

-(void) Dealloc

{

[[nsnotificationcenter defaultcenter]removeobserver:self];

}

@end

iOS distance sensor and shake shake

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.