I'm making an accelerometer based app using cocos2d, and I noticed that it's possible to set the accelerometer update time.
[[UIAccelerometer sharedAccelerometer] setUpdateInterval: (1.0f / 60.0f)];
I was wondering if updating the accelerometer very often like this, 60 times a second is a battery drain? Or should I not worry at all?