1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
| #define screenWidth self.view.frame.size.width #define screenHeight self.view.frame.size.height
#import "ViewController.h"
@interface ViewController () { UIImageView *_topImageView; UIImageView *_bottomImageView; UIImageView *_showImageView; } @end
@implementation ViewController
- (void)viewDidLoad { [super viewDidLoad]; [self createImageViews]; }
-(void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event{
[self showImageView]; NSLog(@"晃动开始"); }
-(void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event{
[self hideImageView]; NSLog(@"晃动结束"); }
-(void)hideImageView{ [UIView animateWithDuration:2 animations:^{ _topImageView.frame = CGRectMake(0, 0, screenWidth, screenHeight/2); _bottomImageView.frame = CGRectMake(0, screenHeight/2, screenWidth, screenHeight/2); }]; } -(void)showImageView{
[UIView animateWithDuration:1 animations:^{ _topImageView.frame = CGRectMake(0, -100, screenWidth, screenHeight/2); _bottomImageView.frame = CGRectMake(0, screenHeight/2 + 100, screenWidth, screenHeight/2); }]; } #pragma mark 创建UI -(void)createImageViews{ _showImageView = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 150, 150)]; _showImageView.center = self.view.center; _showImageView.image = [UIImage imageNamed:@"ShakeHideImg_women"]; [self.view addSubview:_showImageView]; _topImageView = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height/2)]; _topImageView.image = [UIImage imageNamed:@"Shake_Logo_Up"]; [self.view addSubview:_topImageView]; _bottomImageView = [[UIImageView alloc]initWithFrame:CGRectMake(0, self.view.frame.size.height/2, self.view.frame.size.width, self.view.frame.size.height/2)]; _bottomImageView.image = [UIImage imageNamed:@"Shake_Logo_Down"]; [self.view addSubview:_bottomImageView]; }
@end
|