I am developing a simple music player in xcode and want to try using stepper instead of slider for volume.I have tried using 'valuechanged' and passing it to volume but in vain.
-(void)adjustVolume
{
if (audioPlayer != nil)
{
audioPlayer.volume = volumeControl.value;//volume control is (IBAction) for stepper
}
}
help.Thanks