繁体   English   中英

将故事板与自定义UITabbarController一起使用

[英]use storyboard with custom UITabbarController

我已经在这个问题上工作了一段时间,无法找到解决我问题的方法。

我有一个尝试使用图像进行自定义的标签栏视图控制器,我具有自定义图形,但是我需要使用代码来显示和初始化标签栏的视图控制器。 我在其中一个标签的顶部显示导航栏时也遇到问题,我认为这与我如何启动标签视图控制器有关

故事板显示药物标签的顶部应该有一个导航栏,并且该视图通过segue连接到标签栏,您可以看到我尝试使用故事板segue将我的视图控制器链接到标签栏控制器。 我在MedicationViewController.m中具有以下代码

/
//  MedicationViewController.m
//  fibromapp
//
//  Created by jamie mcallister on 08/09/2013.
//  Copyright (c) 2013 Jamie McAllister. All rights reserved.
//

#import "MedicationViewController.h"
#import "TakenViewController.h"
#import "MedsListViewController.h"
#import "MedsAlarmViewController.h"

@interface MedicationViewController ()

@end

@implementation MedicationViewController


- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {

        TakenViewController *viewController2 = [[TakenViewController alloc] init];
        MedsListViewController *viewController1 = [[MedsListViewController alloc] init];
        MedsAlarmViewController *viewController3 = [[MedsAlarmViewController alloc] init];


        self.viewControllers = [NSArray arrayWithObjects:viewController1,
                                viewController2,
                                viewController3,nil];
       UITabBarItem *tab1 = [[UITabBarItem alloc] initWithTitle:@"Medication" image:[UIImage imageNamed:NULL] tag:1];
        UITabBarItem *tab2 = [[UITabBarItem alloc] initWithTitle:@"Taken" image:[UIImage imageNamed:NULL] tag:2];
        UITabBarItem *tab3 = [[UITabBarItem alloc] initWithTitle:@"Alarms" image:[UIImage imageNamed:NULL] tag:3];
        UIImage* sel = [UIImage imageNamed:@"fmtabSel"];


        [viewController1 setTabBarItem:tab1];
        [viewController2 setTabBarItem:tab2];
        [viewController3 setTabBarItem:tab3];

        UIImage* tabBarBackground = [UIImage imageNamed:@"fmtab.png"];

        UITabBar *tabBar = self.tabBar;
        [tabBar setBackgroundImage:tabBarBackground];
        [tabBar setSelectionIndicatorImage:sel];
    }
    return self;
}


- (void)viewDidLoad
{
UITabBar *tabbar = self.tabBar;
NSLog(@"%f %f", tabbar.frame.size.width, tabbar.frame.size.height);//used to find the size of the bar
[super viewDidLoad];

UIImage* tabBarBackground = [UIImage imageNamed:@"fmtab.png"];
UIImage* sel = [UIImage imageNamed:@"fmtabSel"];
    UITabBar *tabBar = self.tabBar;
    [tabBar setBackgroundImage:tabBarBackground];
    [tabBar setSelectionIndicatorImage:sel];

    // Do any additional setup after loading the view.
}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

@end

使用此代码,我得到了选项卡,但是此选项卡的顶部没有导航栏。

有人可以建议我必须做些什么来解决这个问题吗?

如果您需要更多信息,请随时提出,我将其编辑到该问题的底部。 提前致谢 :)

要具有导航栏,必须在选项卡控制器和第一个UIViewController之间放置一个UINavigationController。

所有这些都可以在情节提要中完成,而无需编写任何代码。

如果希望导航栏位于顶部,则应使用由根控制器(不仅仅是普通控制器)初始化的导航控制器来填充选项卡控制器。 像这样:

TakenViewController *viewController2 = [[TakenViewController alloc] init];
MedsListViewController *viewController1 = [[MedsListViewController alloc] init];
MedsAlarmViewController *viewController3 = [[MedsAlarmViewController alloc] init];
UINavigationController * nc1 = [[UINavigationController alloc] initWithRootViewController:viewController1];
UINavigationController * nc2 = [[UINavigationController alloc] initWithRootViewController:viewController2];
UINavigationController * nc3 = [[UINavigationController alloc] initWithRootViewController:viewController3];

self.viewControllers = [NSArray arrayWithObjects:nc1,
                                nc2,
                                nc3,nil];

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM