CoreMotion

#import "TRViewController.h"

#import <CoreMotion/CoreMotion.h>

#import <AVFoundation/AVFoundation.h>


@interface TRViewController ()<AVAudioPlayerDelegate>

@property (nonatomic, strong)AVAudioPlayer *player;

@property(nonatomic,strong)CMMotionManager* manager;

@property (weak, nonatomic) IBOutlet UIButton *myBall;

@property (nonatomic,assign)CGRect oldFrame;

@property (weak, nonatomic) IBOutlet UILabel *tip;

@property (weak, nonatomic) IBOutlet UILabel *label;

@property (nonatomic,assign)BOOL bRet;


@property (strong, nonatomic) IBOutletCollection(UIView) NSArray *iv;



@end


@implementation TRViewController


- (void)viewDidLoad

{

    [super viewDidLoad];

    

  


// Do any additional setup after loading the view, typically from a nib.

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

    [self.manager setAccelerometerUpdateInterval:1.0/30];

    [self.manager startAccelerometerUpdates];

    self.oldFrame = self.myBall.frame;

    self.bRet = YES;

    [NSTimer scheduledTimerWithTimeInterval:1.0/30 target:self selector:@selector(getInfo) userInfo:nil repeats:YES];

    

}


-(void)getInfo

{

    CMAcceleration acc = self.manager.accelerometerData.acceleration;

    //NSLog(@"x = %f y = %f z = %f", acc.x, acc.y, acc.z);

    self.myBall.center = CGPointMake(self.myBall.center.x + acc.x, self.myBall.center.y-acc.y);

    if (self.myBall.center.x < 0 || self.myBall.center.x > 320 || self.myBall.center.y < 0)

    {

        [UIView animateWithDuration:2 animations:^{

            self.myBall.frame = self.oldFrame;

        }];

    }

    if (CGRectIntersectsRect(self.label.frame, self.myBall.frame) && self.bRet == YES)

    {

        self.bRet = NO;

        self.tip.text = @"请靠边行驶";

        [UIView animateWithDuration:5 animations:^{

            self.tip.alpha = 0;

            

        }completion:^(BOOL finisd)

         {

             self.tip.text = @"";

             self.tip.alpha = 1;

         }];

    }

    for (UIView* iv in self.iv)

    {

        if (CGRectIntersectsRect(self.myBall.frame, iv.frame))

        {

            if (2 ==iv.tag)

            {

                UIAlertView* alertView = [[UIAlertView alloc]initWithTitle:@"恭喜" message:@"你赢了" delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil];

                [alertView show];

            }

            else if (1 == iv.tag)

            {

                UIImage* image = [UIImage imageNamed:@"IMG_0993.JPG"];

                UIImageView* imageView = [[UIImageView alloc]initWithImage:image];

                imageView.frame = self.view.frame;

                [self.view addSubview:imageView];

                NSString *path=[[NSBundle mainBundle] pathForResource:@"ghost" ofType:@"mp3"];

            

                NSURL *url = [NSURL fileURLWithPath:path];

                self.player = [[AVAudioPlayer alloc]initWithContentsOfURL:url error:nil];

                self.player.delegate = self;

                [self.player play];

                [UIView animateWithDuration:5.0 animations:^{

                    imageView.alpha = 0;

                    

                }completion:^(BOOL finished){

                    [imageView removeFromSuperview];

                }];

            }

            [UIView animateWithDuration:2 animations:^{

            self.myBall.frame = self.oldFrame;

            }];

            NSLog(@"xxxxxxxxxxxxxxxx");

        }

    }

    

}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值