可以滑下UITabBarController吗?

时间:2010-11-21 20:08:25

标签: iphone objective-c ios uitabbarcontroller

我确定我已经在某个地方看到了这个代码,但我找不到它......

我希望能够以编程方式向下滑动UITabBarController ......而不是在转换到另一个视图时,而是在同一个视图中。

1 个答案:

答案 0 :(得分:4)

如果您想向下滑动UITabBar,可以尝试以下方法:

- (IBAction)showHideTabBar:(id)sender {
    static BOOL isShowing = YES;

    CGRect tabBarFrame = self.tabBarController.tabBar.frame;

    if (isShowing) {
        tabBarFrame.origin.y += tabBarFrame.size.height;
    }
    else {
        tabBarFrame.origin.y -= tabBarFrame.size.height;
    }

    isShowing = !isShowing;

    [UIView animateWithDuration:0.3 animations:^ {
        [self.tabBarController.tabBar setFrame:tabBarFrame];
    }];
}