Como faço para ativar/desativar o botão só a cada 3 segundos?
- (void) updatePlayButton
{
[NSTimer scheduledTimerWithTimeInterval:3 repeats:NO block:<#^(NSTimer * _Nonnull timer)block#>]
if ([[FMRadioController sharedController] isPlaying])
self.radioButton.selected = YES;
else
self.radioButton.selected = NO;
}