I'm using
[[UIApplication sharedApplication] setIdleTimerDisabled: YES];
to keep the app from entering idle, however when I issue
[[UIApplication sharedApplication] setIdleTimerDisabled: NO];
the app goes straight to idle.
Is there a way to restart the timer at this point?
No there is no way to restart the timer. Perhaps you should consider if your app really needs to do this. Quote from Apple:
If you app does need to turn the idleTimer off then perhaps it can stay off till the app goes in to the background?
You could try adding an alert at the end of the timed event
Omit the release if you're using ARC. This may light the screen backup, then perhaps you don't need to mess with the idle timer.