gpt4 book ai didi

ios - 隐藏自定义UITabBar

转载 作者:行者123 更新时间:2023-11-29 04:05:44 30 4
gpt4 key购买 nike

我已成功创建并实现了自定义 UITabBarController,其中包含自定义 UITabBar,如下 this tutorial .它工作得很好,直到我不得不隐藏它。

我没有使用 Storyboards 或 IB,我必须获取对屏幕上现有 UITabBarController 的引用,以隐藏其中的自定义 UIView。我正在尝试这样做,但它只是创建该 UITabBarController 的新实例,而不是指向我在屏幕上看到的原始实例:

SGTabBarController *tabBarController = [[SGTabBarController alloc] init];
[tabBarController hideCustomTabBar];

SGTabBarController.h

@interface SGTabBarController : UITabBarController

@property (nonatomic) int tabBarHeight;

-(void)hideCustomTabBar;
-(void)showCustomTabBar;

@end

SGTabBarController.m

-(void)hideCustomTabBar{
customTabBarView.hidden = YES;
NSLog(@"HIDDEN!!!");
}

-(void)showCustomTabBar{
customTabBarView.hidden = NO;
}

关于如何到达它有什么想法吗?提前致谢!

最佳答案

我如何能够在应用程序中的任何位置访问自定义 UITabBarController。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Set up the Dashboard
//
_window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
[_window makeKeyAndVisible];

UITabBarController *tabBarController = [[UITabBarController alloc] init];
NSMutableArray *tabBarItems = [@[] mutableCopy];

// Repeat this for any amount of ViewControllers
UITableViewController *tableViewController = [UITableViewController alloc] initWithStyle:UITableViewStylePlain];
UINavigationController *navController = [UINavigationController alloc] initWithRootViewController:tableViewController];

[tabBarItems addObject:navController];
tabBarController.viewControllers = tabBarItems;
self.window.rootViewController = tabBarController;

return YES;
}

关于ios - 隐藏自定义UITabBar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15276477/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com