Gyroscope




#import <CoreMotion/CoreMotion.h>


    self.motionManager = [[CMMotionManager alloc] init];



    //Gyroscope

    if([self.motionManager isGyroAvailable])

    {

        /* Start the gyroscope if it is not active already */ 

        if([self.motionManager isGyroActive] == NO)

        {

            /* Update us 2 times a second */

            [self.motionManager setGyroUpdateInterval:1.0f / 2.0f];


            /* And on a handler block object */


            /* Receive the gyroscope data on this block */

            [self.motionManager startGyroUpdatesToQueue:[NSOperationQueue mainQueue]

             withHandler:^(CMGyroData *gyroData, NSError *error)

            {

                NSString *x = [[NSString alloc] initWithFormat:@"%.02f",gyroData.rotationRate.x];

                self.gyro_xaxis.text = x;


                NSString *y = [[NSString alloc] initWithFormat:@"%.02f",gyroData.rotationRate.y];

                self.gyro_yaxis.text = y;


                NSString *z = [[NSString alloc] initWithFormat:@"%.02f",gyroData.rotationRate.z];

                self.gyro_zaxis.text = z;

            }];

        }

    }

    else

    {

        NSLog(@"Gyroscope not Available!");

    }

}


http://stackoverflow.com/questions/7135934/ios-gyroscope-api





Posted by tenn
,

[google] 고급검색 연산자

etc 2012. 12. 13. 10:57



*** 특정 사이트 검색

site:


keyword site:yahoo.com    <- 사이트 지정 검색

keyword -site:yahoo.com   <- 지정 사이트 제외 검색






*** filetype 지정 검색


filetype:pdf  <- pdf 파일 검색






*** 메일 고급검색



http://support.google.com/mail/bin/answer.py?hl=ko&answer=7190

Posted by tenn
,



UITapGestureRecognizer

탭(몇번이든)

UIPinchGestureRecognizer

(두손가락으로 집어 벌리기 오므리기)

UIPanGestureRecognizer

Panning or dragging

UISwipeGestureRecognizer

넘기기 (어떤 방향이든)

UIRotationGestureRecognizer

Rotating (fingers moving in opposite directions)

UILongPressGestureRecognizer

길게누르기



Posted by tenn
,