tabbar animation 썸네일형 리스트형 [iOS] tabbarcontroller hide기 / 탭바 숨기기 -(IBAction)btnEdit:(id)sender{ CGRect frame = self.tabBarController.view.superview.frame; CGFloat offset = self.tabBarController.tabBar.frame.size.height; frame.size.height += offset; // self.tabBarController.view.frame = frame; [UIView animateWithDuration:0.2 animations:^{ self.tabBarController.view.frame = frame; } ]; } -(IBAction)btnEdit1:(id)sender{ CGRect frame = self.tabBarController.view... 더보기 이전 1 다음