Guest User

Untitled

a guest
Jan 23rd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. - (BOOL) isGyroscopeAvailable
  2. {
  3. #ifdef __IPHONE_4_0
  4. CMMotionManager *motionManager = [[CMMotionManager alloc] init];
  5. BOOL gyroAvailable = motionManager.gyroAvailable;
  6. [motionManager release];
  7. return gyroAvailable;
  8. #else
  9. return NO;
  10. #endif
  11.  
  12. }
Add Comment
Please, Sign In to add comment