Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialmartin chibwe
3,901 PointsLogging In and Logging Out
this code is not working when am trying to hide the button. Help
-(void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([segue.identifier isEqualToString:@"ShowLogin"]) {
NSLog(@" yes this is the right showLogin sir");
[segue.destinationViewController setHidesBottomBarWhenPushed:YES];
}
}
1 Answer
muqbilhashi
1,498 Pointscheck your storyboard segue identifier.... is it ShowLogin (with capital S) or showLogin? hope that helps