0

アプリにこのスライダーがあります

- (IBAction)slider1:(id)sender
{
    UISlider *slider = (UISlider *)sender;  //declare slider
    NSLog(@"%f",slider.value;
}

アプリがバックグラウンドから戻るたびにスライダーのデフォルト値を設定するにはどうすればよいですか?

4

1 に答える 1

2

UIApplicationWillEnterForegroundNotification通知のオブザーバーを追加します。

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(willEnterForeground:) name:UIApplicationWillEnterForegroundNotification object:nil];


- (void)willEnterForeground:(NSNotification *)n {
    self.slider.value = 0.0f;
}
于 2013-02-16T14:36:25.287 に答える