I have this app that monitors you through out the day. When you place your device in your pocket, the screen will turn off using the proximity sensor to conserve battery. My problem is it still is not conserving enough battery so I am trying to detect when the proximity state changes the proximity monitoring will disable. This brings me more problems because the proximity monitoring will stop but not until you uncover the sensor. Here is my Code.

- (void)viewDidLoad{
[super viewDidLoad];
[[UIDevice currentDevice] setProximityMonitoringEnabled:YES];
[[UIDevice currentDevice] proximityState];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(proximityStateDidChange) name:UIDeviceProximityStateDidChangeNotification object:nil];
[self curTime];
}
-(void)proximityStateDidChange{
[[UIDevice currentDevice] setProximityMonitoringEnabled:NO];
NSLog(@"Disabled");
}
link|improve this question

80% accept rate
feedback

1 Answer

Try to use disable it a dealloc procedure like follows:

-(void)dealloc{ 
  [[UIDevice currentDevice] setProximityMonitoringEnabled:NO]; 
 }
link|improve this answer
you should not create a dealloc function without calling [super dealloc] in the function. – Bastian Feb 16 at 13:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.