☆잉여놀이

[objective-c] hide a tabbar animated

열혈찐 2011. 11. 24. 15:38


    [self.tabBarController.tabBar setFrame:CGRectMake(0, 431, self.tabBarController.tabBar.frame.size.width, self.tabBarController.tabBar.frame.size.height)];

    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:2.0];
    [UIView setAnimationCurve:UIViewAnimationOptionTransitionCurlUp];
    [self.tabBarController.tabBar setFrame:CGRectMake(0, 480, self.tabBarController.tabBar.frame.size.width, self.tabBarController.tabBar.frame.size.height)];
    [UIView commitAnimations];