アプリにこのスライダーがあります
- (IBAction)slider1:(id)sender
{
UISlider *slider = (UISlider *)sender; //declare slider
NSLog(@"%f",slider.value;
}
アプリがバックグラウンドから戻るたびにスライダーのデフォルト値を設定するにはどうすればよいですか?
UIApplicationWillEnterForegroundNotification
通知のオブザーバーを追加します。
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(willEnterForeground:) name:UIApplicationWillEnterForegroundNotification object:nil];
- (void)willEnterForeground:(NSNotification *)n {
self.slider.value = 0.0f;
}