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

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

最佳答案

如果要上下滑动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];
    }];
}

关于iphone - 可以滑下UITabBarController吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4240061/

10-13 04:03