iOS 仿百度外卖-首页重力感应的实例

 更新时间:2017年01月03日 10:18:06   作者:Amydom  
这篇文章主要介绍了iOS 仿百度外卖-首页重力感应的实例,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。

今天带来的是仿百度外卖首页的重力感应..(由于只能真机测试,手里测试机只有5s,所以有些地方并没有适配其他机型,需要的还需要根据真机自行适配)

来简单说下实现吧,之前重力感应都是用UIAccelerometer实现的,但是,好像是从iOS 4 以后,这个方法就废弃了,它被直接封装到了CoreMotion框架中,所以现在有关重力感应,加速计什么的都需要通过CoreMotion框架实现,这也算是苹果对于重力感应的整合吧.本文对CoreMotion框架只是进行了简单的使用,想要更深的使用,还是请自行 google(百度上的文档非常少).

好了.下面就是实现代码

(注意这里需要导入系统框架CoreMotion.framework)

// 
// ViewController.m 
// 仿百度外卖首页-重力感应 
// 
// Created by Amydom on 16/12/5. 
// Copyright © 2016年 Amydom. All rights reserved. 
// 
 
#import "ViewController.h" 
#import <CoreMotion/CoreMotion.h> 
 
@interface ViewController ()<UIScrollViewDelegate>{ 
   
  NSTimeInterval updateInterval; 
  CGFloat setx;//scroll的动态偏移量 
   
} 
@property (nonatomic,strong) CMMotionManager *mManager; 
 
@property (nonatomic , strong)UIScrollView *myScrollView; 
 
@property (nonatomic , assign)CGFloat offsetX;//初始偏移量 
 
@property (nonatomic , assign)NSInteger offset; 
 
 
@end 
 
@implementation ViewController 
 
- (void)viewDidAppear:(BOOL)animated_{ 
   
  [super viewDidAppear:animated_]; 
  //在界面已经显示后在调用方法(优化) 
  [self startUpdateAccelerometerResult:0]; 
   
} 
 
- (void)viewDidLoad { 
  [super viewDidLoad]; 
  self.view.backgroundColor = [UIColor whiteColor]; 
  [self createView]; 
   
} 
 
- (void)createView{ 
   
  //collectionView 
  UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc]init]; 
  UICollectionView *myCollection = [[UICollectionView alloc]initWithFrame:[UIScreen mainScreen].bounds collectionViewLayout:flowLayout]; 
  myCollection.backgroundColor = [UIColor whiteColor]; 
  [self.view addSubview:myCollection]; 
   
   
   
  _myScrollView = [[UIScrollView alloc]initWithFrame:CGRectMake(0, 22, self.view.frame.size.width, 100)]; 
  _myScrollView.backgroundColor = [UIColor lightGrayColor]; 
  _myScrollView.delegate = self; 
  [self.view addSubview:_myScrollView]; 
   
   
  for (int i = 0; i < 8; i ++) { 
     
    NSString *name = [NSString stringWithFormat:@"%d.jpg",i + 1]; 
    UIImageView *image = [[UIImageView alloc]initWithFrame:CGRectMake(5 + 885 * i, 10, 80, 80)]; 
    image.image = [UIImage imageNamed:name]; 
    image.backgroundColor = [UIColor orangeColor]; 
    image.layer.masksToBounds = YES; 
    image.layer.cornerRadius = 40; 
    [_myScrollView addSubview:image]; 
    //偏移量为最后 image 的 frame + origin 
    _myScrollView.contentSize = CGSizeMake (image.frame.size.width + image.frame.origin.x, 10); 
     
     
  } 
   
   
 
} 
 
//手指触碰时 
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView{ 
   
   _offsetX = scrollView.contentOffset.x; 
  [self stopUpdate]; 
   
} 
 
- (void)scrollViewDidScroll:(UIScrollView *)scrollView{ 
   
  //优化处理 
  setx = scrollView.contentOffset.x; 
   
  _offset = scrollView.contentOffset.x - _offsetX; 
   
    if (_offset > 0) { 
   
      //left 
   
    }else{ 
   
      //right 
       
    } 
   
   
} 
//手指离开时 
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate{ 
   
  [self startUpdateAccelerometerResult:0]; 
   
} 
 
#pragma mark - 重力感应 
- (CMMotionManager *)mManager 
{ 
  if (!_mManager) { 
    updateInterval = 1.0/15.0; 
    _mManager = [[CMMotionManager alloc] init]; 
  } 
  return _mManager; 
} 
//开始 
- (void)startUpdateAccelerometerResult:(void (^)(NSInteger))result 
{ 
 
  if ([self.mManager isAccelerometerAvailable] == YES) { 
    //回调会一直调用,建议获取到就调用下面的停止方法,需要再重新开始,当然如果需求是实时不间断的话可以等离开页面之后再stop 
    [self.mManager setAccelerometerUpdateInterval:updateInterval]; 
    [self.mManager startAccelerometerUpdatesToQueue:[NSOperationQueue currentQueue] withHandler:^(CMAccelerometerData *accelerometerData, NSError *error) 
     { 
       double x = accelerometerData.acceleration.x; 
       double y = accelerometerData.acceleration.y; 
       if (fabs(y) >= fabs(x)) 
       {//前后 
         if (y >= 0){ 
           //Down 
         } 
         else{ 
           //Portrait 
         } 
          
       } else { //左右 
         
         if (x >= 0){ 
            
           setx += 10; 
            
           if (setx <= 360) { 
             //由于以10为单位改变 contentOffset, 会出现顿的现象,加上动画就可解决这个问题 
             [UIView animateWithDuration:0.1 animations:^{ 
                
               _myScrollView.contentOffset = CGPointMake(setx, 0); 
             }]; 
             //模仿 scroll 的回弹效果 
             if (setx == 360) { 
                
               [UIView animateWithDuration:0.5 animations:^{ 
                  
                 _myScrollView.contentOffset = CGPointMake(setx + 50, 0); 
                  
               } completion:^(BOOL finished) { 
                  
                 [UIView animateWithDuration:0.5 animations:^{ 
                    
                   _myScrollView.contentOffset = CGPointMake(setx , 0); 
 
                 }]; 
                  
               }]; 
                
             } 
              
           }else{ 
              
             setx = 360; 
           } 
            
     
         }else{ 
            
           setx -= 10; 
            
           if (setx >= 0) { 
              
             [UIView animateWithDuration:0.1 animations:^{ 
                
               _myScrollView.contentOffset = CGPointMake(setx, 0); 
 
             }]; 
              
             //模仿 scroll 的回弹效果 
             if (setx == 0) { 
                
               [UIView animateWithDuration:0.5 animations:^{ 
                  
                 _myScrollView.contentOffset = CGPointMake(setx - 50, 0); 
                  
               } completion:^(BOOL finished) { 
                  
                 [UIView animateWithDuration:0.5 animations:^{ 
                    
                   _myScrollView.contentOffset = CGPointMake(setx, 0); 
                    
                 }]; 
                  
               }]; 
 
             } 
              
           }else{ 
              
             setx = 0; 
              
           } 
         } 
       } 
     }]; 
  } 
} 
 
//停止感应方法 
- (void)stopUpdate 
{ 
  if ([self.mManager isAccelerometerActive] == YES) 
  { 
    [self.mManager stopAccelerometerUpdates]; 
  } 
} 
//离开页面后停止(移除 mManager) 
- (void)dealloc 
{ 
  //制空,防止野指针 
  _mManager = nil; 
} 
 
 
- (void)didReceiveMemoryWarning { 
  [super didReceiveMemoryWarning]; 
  // Dispose of any resources that can be recreated. 
} 
 
 
@end 

到这里,就可以进行真机测试了..

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • iOS中滑动控制屏幕亮度和系统音量(附加AVAudioPlayer基本用法和Masonry简单使用)

    iOS中滑动控制屏幕亮度和系统音量(附加AVAudioPlayer基本用法和Masonry简单使用)

    这篇文章主要介绍了iOS中滑动控制屏幕亮度和系统音量(附加AVAudioPlayer基本用法和Masonry简单使用)的相关资料,需要的朋友可以参考下
    2016-12-12
  • iOS开发Quick Actions创建桌面Icon快捷方式

    iOS开发Quick Actions创建桌面Icon快捷方式

    在本文里我们给大家分享了关于iOS开发Quick Actions创建桌面Icon快捷方式的相关知识点内容,需要的读者们可以参考下。
    2019-05-05
  • 详谈iOS 位置权限弹出框闪现的问题

    详谈iOS 位置权限弹出框闪现的问题

    下面小编就为大家带来一篇详谈iOS 位置权限弹出框闪现的问题。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-04-04
  • iOS中最全的各种定时器使用教程

    iOS中最全的各种定时器使用教程

    这篇文章主要给大家介绍了关于iOS中最全的各种定时器的使用教程,文中通过示例代码介绍的非常详细,通过文中介绍的最全的定时器相信会对各位iOS开发者们带来一定的帮助,需要的朋友们下面随着小编来一起学习学习吧。
    2017-09-09
  • iOS开发微信支付的方法

    iOS开发微信支付的方法

    这篇文章主要为大家详细介绍了iOS开发微信支付的方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-01-01
  • iOS 更改UILabel某些字体样式方法

    iOS 更改UILabel某些字体样式方法

    本文通过实例代码给大家介绍了iOS 更改UILabel某些字体样式方法,非常不错,具有参考借鉴价值,需要的朋友参考下吧
    2017-03-03
  • iOS开发之运动事件和远程控制

    iOS开发之运动事件和远程控制

    在iOS中事件分为三类:触摸事件:通过触摸、手势进行触发(例如手指点击、缩放),运动事件:通过加速器进行触发(例如手机晃动),远程控制事件:通过其他远程设备触发(例如耳机控制按钮)今天我们来详细探讨下运动事件和远程控制
    2016-04-04
  • iOS动画-定时对UIView进行翻转和抖动的方法

    iOS动画-定时对UIView进行翻转和抖动的方法

    下面小编就为大家带来一篇iOS动画-定时对UIView进行翻转和抖动的方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-04-04
  • iOS实用教程之Https双向认证详解

    iOS实用教程之Https双向认证详解

    这篇文章主要给大家介绍了关于iOS中Https双向认证的相关资料,文中介绍的非常详细,对大家具有一定的参考学习价值,需要的朋友可以参考借鉴,下面来一起看看吧。
    2017-05-05
  • iOS性能优化教程之页面加载速率详解

    iOS性能优化教程之页面加载速率详解

    在软件开发领域里经常能听到这样一句话,“过早的优化是万恶之源”,不要过早优化或者过度优化。下面这篇文章主要给大家介绍了关于iOS性能优化教程之页面加载速率的相关资料,需要的朋友可以参考下
    2018-09-09

最新评论