| Paste number 66360: | tabbar not hiding |
| Pasted by: | jer |
| 2 months, 3 weeks ago | |
| #iphonedev | Context in IRC logs | |
| Paste contents: |
| // in the tab bar controller - (void)hideTabBar { tabBar.alpha = 0.0; tabBar.hidden = YES; } // in the view - (void)tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { [tableView deselectRowAtIndexPath:indexPath animated:NO]; self.backupView = self.view; self.navigationController.hidesBottomBarWhenPushed = YES; [tabBarController hideTabBar]; self.smileyLabel.adjustsFontSizeToFitWidth = YES; self.smileyLabel.font = [UIFont fontWithName:@"Trebuchet MS" size:((self.view.frame.size.height < self.view.frame.size.width) ? self.view.frame.size.height : self.view.frame.size.width)]; self.smileyLabel.text = [[data objectAtIndex:indexPath.section] objectAtIndex:1]; self.view = selectView; [self.navigationController popToViewController:self animated:NO]; } |
This paste has no annotations.