Contents

조회 수 315 추천 수 0 댓글 0
Atachment
첨부 '2'
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

SOMotionDetector

Simple library to detect motion for iOS by arturdev .

Based on location updates and acceleration.

Requierments

iOS > 6.0

Compatible with iOS 7

Works on all iOS devices (i.e. not need M7 chip)

SOMotionDetector.png

USAGE

Copy SOMotionDetector folder to your project.

Link CoreMotion.frameworkCoreLocation.framework.

Import "SOMotionDetector.h" file and implement 
protocol.

#import "SOMotionDetector.h
@interface ViewController ()<SOMotionDetectorDelegate>

@end

Set SOMotionDetector's delegate to self

[SOMotionDetector sharedInstance].delegate = self;

Implement delegate methods

- (void)motionDetector:(SOMotionDetector *)motionDetector motionTypeChanged:(SOMotionType)motionType
{

}

- (void)motionDetector:(SOMotionDetector *)motionDetector locationChanged:(CLLocation *)location
{

}

- (void)motionDetector:(SOMotionDetector *)motionDetector accelerationChanged:(CMAcceleration)acceleration
{

}

You are done!

Now to start detection motion just call

[[SOMotionDetector sharedInstance] startDetection];

To stop detection call

[[SOMotionDetector sharedInstance] stopDetection];

Detecting motion types

typedef enum
{
  MotionTypeNotMoving = 1,
  MotionTypeWalking,
  MotionTypeRunning,
  MotionTypeAutomotive
} SOMotionType;

CUSTOMIZATION

/**
 * Set this parameter to YES if you want to use M7 chip to detect more exact motion type. By default is No.
 * Set this parameter before calling startDetection method.
 * Available only on devices that have M7 chip. At this time only the iPhone 5S, the iPad Air and iPad mini with retina display have the M7 coprocessor.
 */
@property (nonatomic) BOOL useM7IfAvailable;

/**
 *@param speed  The minimum speed value less than which will be considered as not moving state
 */
- (void)setMinimumSpeed:(CGFloat)speed;

/**
 *@param speed  The maximum speed value more than which will be considered as running state
 */
- (void)setMaximumWalkingSpeed:(CGFloat)speed;

/**
 *@param speed  The maximum speed value more than which will be considered as automotive state
 */
- (void)setMaximumRunningSpeed:(CGFloat)speed;

/**
 *@param acceleration  The minimum acceleration value less than which will be considered as non shaking state
 */
- (void)setMinimumRunningAcceleration:(CGFloat)acceleration;

Installation with CocoaPods

CocoaPods is a dependency manager for Objective-C, which automates and simplifies the process of using 3rd-party libraries installation in your projects.

Podfile

pod "SOMotionDetector", "~> 1.0.1"

LICENSE

SOMotionDetector is under MIT License (see LICENSE file)

M7칩을 사용하지않는 iOS기기에서도 사용가능한 모션디텍터 라이브러리 오픈소스 SOMotionDetector 입니다.

다운로드는 첨부파일 또는 아래링크를 확인하세요>
https://github.com/SocialObjects-Software/SOMotionDetector/

?

  1. 썸네일이미지로 맵킷 애노테이션 표시하기 - JPSThumbnailAnnotation

    Date2014.03.18 CategoryiOS Byhooni Views234
    Read More
  2. 코드 미니맵 Xcode 플러그인 - SCXcodeMiniMap

    Date2014.03.18 CategoryiOS Byhooni Views209
    Read More
  3. 스크롤타입 달력픽커 - DayFlow

    Date2014.03.18 CategoryiOS Byhooni Views242
    Read More
  4. NSDate 확장 클래스 NSDate-Extensions

    Date2014.03.18 CategoryiOS Byhooni Views229
    Read More
  5. 자동스크롤 업다운 컨트롤 - KLScrollSelect

    Date2014.03.18 CategoryiOS Byhooni Views258
    Read More
  6. 플립보드 화면전환효과 구현하기 - FlipBoardNavigationController

    Date2014.03.18 CategoryiOS Byhooni Views236
    Read More
  7. 플랫 UI 커스텀 컨트롤 - FlatUIKit

    Date2014.03.18 CategoryiOS Byhooni Views213
    Read More
  8. 공유버튼 UI 컨트롤 - CFShareCircle

    Date2014.03.18 CategoryiOS Byhooni Views221
    Read More
  9. 이미지 크롭에디터 컨트롤 - PEPhotoCropEditor

    Date2014.03.18 CategoryiOS Byhooni Views245
    Read More
  10. 블럭기반 AlertView 커스텀 컨트롤 - SIAlertView

    Date2014.03.18 CategoryiOS Byhooni Views233
    Read More
  11. 트위터 뮤직앱 화면전환 구현 컨트롤 - UIScrollSlidingPages

    Date2014.03.18 CategoryiOS Byhooni Views326
    Read More
  12. 메일앱 Sparrow의 확장버튼 컨트롤 구현하기 - OCExpandableButton

    Date2014.03.18 CategoryiOS Byhooni Views258
    Read More
Board Pagination Prev 1 ... 6 7 8 9 10 11 12 13 14 15 ... 19 Next
/ 19