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 

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

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

(0)

相关推荐

  • IOS Cache设计详细介绍及简单示例

    IOS Cache设计 Cache的设计是个基础计算机理论,也是程序员的重要基本功之一.Cache几乎无处不在,CPU的L1 L2 Cache,iOS系统的clean page和dirty page机制,HTTP的tag机制等,这些背后都是Cache设计思想的应用. 为什么需要Cache Cache的目的是为了追求更高的速度体验,Cache的源头是两种数据读取方式在成本和性能上的差异. 在开始着手设计Cache之前,需要先理清数据存储的媒介.作为客户端开发人员来说,我们所关注的数据存储方式也有不

  • iOS中的NSURLCache数据缓存类用法解析

    在IOS应用程序开发中,为了减少与服务端的交互次数,加快用户的响应速度,一般都会在IOS设备中加一个缓存的机制.使用缓存的目的是为了使用的应用程序能更快速的响应用户输入,是程序高效的运行.有时候我们需要将远程web服务器获取的数据缓存起来,减少对同一个url多次请求.下面将介绍如何在IOS设备中进行缓存. 内存缓存我们可以使用sdk中的NSURLCache类.NSURLRequest需要一个缓存参数来说明它请求的url何如缓存数据的,我们先看下它的CachePolicy类型.    1.NSUR

  • IOS TextFiled与TextView 键盘的收起以及处理键盘遮挡

    IOS TextFiled与TextView 键盘的收起以及处理键盘遮挡 在iOS开发中,UITextFiled和UITextView是很常见的两个控件,当我们设置好这两个控件后,点击文字输入区域,系统会自动弹出键盘,但是如何收起键盘.点击哪里收起键盘,以及在iPhone4中键盘弹出后遮挡输入框怎么办呢? 这篇文章将带领大家解决: 1>点击其他空白区域收起键盘 2>点击键盘右下角的键收起键盘 3>处理键盘遮挡问题 一,点击其他空白区域收起键盘 - (void)viewDidLoad {

  • IOS正则表达式判断输入类型(整理)

    在开发过程中,有时需要对用户输入的类型做判断,最常见是在注册页面即用户名和密码,代码整理如下: 只能为中文 -(BOOL)onlyInputChineseCharacters:(NSString*)string{ NSString *zhString = @"[\u4e00-\u9fa5]+"; NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",zhString]

  • iOS 条码及二维码扫描(从相册中读取条形码/二维码)及扫码过程中遇到的坑

    文章重点介绍如何解决,从手机相册中读取条形码和二维码的问题 1.扫码. 网上有特别的关于iOS扫码的代码和示例,其中扫码主要使用的是自带的AVFoundation类.这里就不细说了,要注意的是如何设置扫描区域,识别区域(这个值是按比例0~1设置,而且X.Y要调换位置,width.height调换位置) <span style="font-size:14px;">//创建输出流 AVCaptureMetadataOutput * output = [[AVCaptureMet

  • iOS实现时间显示几分钟前,几小时前以及刚刚的方法示例

    前言 本文实现的效果类似于QQ空间里的好友发表的动态,会显示好友发表的时间,这里是处理显示几小时前,几分钟前,刚刚,昨天,前天这样的格式,下面来一起看看吧. 一:刚刚,几分钟前,几小时前 //时间 NSString *createdTimeStr = @"2017-01-01 21:05:10"; //把字符串转为NSdate NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter

  • 使用Javascript判断浏览器终端设备(PC、IOS(iphone)、Android)

    WEB开发中如何通过Javascript来判断终端为PC.IOS(iphone).Android呢? 可以通过判断浏览器的userAgent,用正则来判断手机是否是ios和Android客户端. var u = navigator.userAgent; isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1, //android终端 isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS

  • C++开发在IOS环境下运行的LRUCache缓存功能

    本文着重介绍如何在XCODE中,通过C++开发在IOS环境下运行的缓存功能.算法基于LRU(最近最少使用).有关lru详见: http://en.wikipedia.org/wiki/Page_replacement_algorithm#Least_recently_used 之前在网上看到过网友的一个C++实现,感觉不错,所以核心代码就采用了他的设计.原作者通过两个MAP对象来记录缓存数据和LRU队列,注意其中的LRU队列并不是按照常用的方式使用LIST链表,而是使用MAP来代替LIST,有关

  • IOS与网页JS交互详解及实例

     IOS与网页JS交互 随着移动APP的快速迭代开发趋势,越来越多的APP中嵌入了html网页,但在一些大中型APP中,尤其是电商类APP,html页面已经不仅仅满足展示功能,这时html要求能与原生语言进行交互.相互传值.比如携程APP中一个热门景点的网页中,点击某个景点,可以跳转到原生中的该景点详情页控制器. 为此,我整理了三种最常用最便捷有效的OC与JS交互的方式,供大家学习交流. 第一种:JS给OC传值. 1. 技术方案:使用JavaScriptCore.framework框架 2. 使

  • Objective-C的缓存框架EGOCache在iOS App开发中的使用

    EGOCache简介 EGOCache is a simple, thread-safe key value cache store. It has native support for NSString, UI/NSImage, and NSData, but can store anything that implements <NSCoding>. All cached items expire after the timeout, which by default, is one da

  • IOS 开发之应用唤起实现原理详解

    一.什么是iOS应用唤起 IOS中的应用唤起用来实现以下功能:在浏览器中可以通过某些方式打开IOS手机本地的app,如果该app没有安装可以跳转到该应用对应的App Store的下载页. 二.App store下载页连接 App store中某个应用的下载页连接形如:https://itunes.apple.com/us/app/id399608199.在PC端浏览器打开该连接会跳转到应用详情页的PC端界面.在Safari中打开该连接,浏览器会询问是否在App Store中打开该连接,选择打开即

随机推荐