I have three views and three buttons each button toggles the view (hidden = yes/no)
- (IBAction)switchOne:(id)sender {
[_firstPage setHidden:NO];
[_secondPage setHidden:YES];
[_thirdPage setHidden:YES];
}
- (IBAction)switchTwo:(id)sender {
[_firstPage setHidden:YES];
[_secondPage setHidden:NO];
[_thirdPage setHidden:YES];
}
- (IBAction)switchThree:(id)sender {
[_firstPage setHidden:YES];
[_secondPage setHidden:YES];
[_thirdPage setHidden:NO];
}
I want to set the background of the button depending if the view is hidden or not.
I have tried this but without results:
if (_firstPage.hidden == NO)
{
UIImage *buttonImage = [UIImage imageNamed:@"currentPage.png"];
[_pageOneButton setBackgroundImage:buttonImage forState:UIControlStateNormal];
[self.view addSubview:_pageOneButton];
} else if (_firstPage.hidden == YES) {
[_pageOneButton setBackgroundImage:nil forState:UIControlStateNormal];
}
The _pageOneButton keeps the background even with the view hidden.
I leave an image of the menu as is now:

The point is: when Página 2 is active (hidden == NO) the Página 1 button should be without the background.