iOS
2014.03.19 13:50
모션디텍터 라이브러리 - SOMotionDetector
조회 수 919 추천 수 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/
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
227 | iOS |
FTUtils - 코어애니메이션 유틸리티 라이브러리
![]() |
hooni | 2014.03.18 | 533 |
226 | iOS |
Pull-To-Refresh 기능을 코드한줄에 구현가능한 SVViewController
![]() |
hooni | 2014.03.18 | 594 |
225 | iOS |
끌어 당겼다 놓으면서 리프레쉬하는 소스
![]() |
hooni | 2014.03.18 | 596 |
224 | iOS |
스크롤시 에니메이션기능을 부각시킨 테이블뷰 - ADLivelyTableView
![]() |
hooni | 2014.03.18 | 600 |
223 | iOS |
iPad용 트위터앱 처럼 슬라이딩 패널 구현 소스 - StackScrollView
![]() |
hooni | 2014.03.18 | 606 |
222 | iOS |
iAd 샘플소스 PortMeAfter
![]() |
hooni | 2014.03.18 | 609 |
221 | iOS |
climbers - 바위를 피해 벽을 오르는 게임
![]() |
hooni | 2014.03.18 | 613 |
220 | iOS |
테이블뷰를 대체 가능한 커스텀 라이브러리 - MGBox
![]() |
hooni | 2014.03.18 | 616 |
219 | iOS |
커스텀 탭뷰 - JMTabView
![]() |
hooni | 2014.03.18 | 620 |
218 | iOS |
KnightFight - 기사를 찾아 총을 쏴라!
![]() |
hooni | 2014.03.18 | 622 |
217 | iOS |
Sliding Navigation Controller - 트위터앱 처럼 슬라이딩 컨트롤러 구현가능
![]() |
hooni | 2014.03.18 | 622 |
216 | iOS |
iOS 용 Vim 에디터 오픈소스
![]() |
hooni | 2014.03.18 | 624 |