iOS
2014.03.19 13:50
모션디텍터 라이브러리 - SOMotionDetector
조회 수 541 추천 수 0 댓글 0
첨부 '2' |
---|
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)
USAGE
Copy SOMotionDetector folder to your project.
Link CoreMotion.framework, CoreLocation.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/
Who's hooni
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
180 | iOS | iOS용 아날로그 시계 오픈소스 - BEMAnalogClock | hooni | 2014.07.01 | 511 |
179 | iOS | 육각형 레이아웃 구현하기 - CCHexagonFlowLayout | hooni | 2014.07.01 | 469 |
178 | iOS | 버블팝업창으로 변경값을 보여주는 커스텀 UISlider - ASValueTrackingSlider | hooni | 2014.07.01 | 421 |
177 | iOS | Flappy 2048 링크 모음 | hooni | 2014.04.30 | 439 |
176 | iOS | 구불구불 휘어지는 테이블뷰 구현하기 - BRFlabbyTable | hooni | 2014.04.07 | 419 |
175 | iOS | 사용자의 제스츄어액션 표시하기 - COSTouchVisualizer | hooni | 2014.04.07 | 408 |
174 | iOS | 간단히 앱내 셋팅화면 구현이 가능한 FxForms 오픈소스 | hooni | 2014.03.19 | 407 |
» | iOS | 모션디텍터 라이브러리 - SOMotionDetector | hooni | 2014.03.19 | 541 |
172 | iOS | 페이스북 페이퍼앱 로딩시 문자 반짝임 효과 구현 오픈소스 - Shimmer | hooni | 2014.03.19 | 471 |
171 | iOS | Flappy Bird 게임 만들기 - SprityBird | hooni | 2014.03.19 | 472 |
170 | iOS | 오픈소스 페인터 앱 - Brushes | hooni | 2014.03.19 | 485 |
169 | iOS | 벡터 일러스트레이션 앱 - 잉크패드 | hooni | 2014.03.19 | 448 |