BCTabBarのようなアニメーションでCustomTabBarを作成しようとしました
そして私はこのコードをAppDelegateで書きます
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch. tabBarController.delegate = self;
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.tabBarController = [[BCTabBarController alloc] init];
self.tabBarController.viewControllers = [NSArray arrayWithObjects:[[UINavigationController alloc]
initWithRootViewController:[[ProfileViewController alloc] init]], [[ChargeViewController alloc] init],
[[OffersViewController alloc] init],
[[ContactUsViewController alloc] init],
nil,nil];
[self.window addSubview:self.tabBarController.view];
[self.window makeKeyAndVisible];
return YES;
}
正常に動作しますが、RootViewControllerのNavigationBarを削除したいのですが、何ができますか?