0

我有 2 个视图控制器,第一个是故事板(这是根),第二个是 nibles。当我按下根视图控制器中的按钮时,它应该调用第二个控制器。

这是我的第二个视图控制器的代码:

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        UILabel *sampleLabel = [[UILabel alloc] initWithFrame: CGRectMake(0,0,100,100)];
        UIImageView * basketItem = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"B.jpg"]];
        [self.view addSubview:sampleLabel];
        [self.view addSubview:basketItem];
        NSLog(@"%@",self.view.subviews);
        sampleLabel.text = @"Main Menu";
    }
    return self;
}

self.view.sebviews 查询显示存在 2 个对象标签和 imageView 对象,但实际上我只看到黑屏。

这是过渡方法

- (void)transitionToViewController:(UIViewController *)aViewController
  withOptions:(UIViewAnimationOptions)options
{
      aViewController.view.frame = self.containerView.bounds;
      [UIView transitionWithView:self.containerView
                  duration:0.65f
                   options:options
                animations:^{
                    [self.viewController.view removeFromSuperview];
                    [self.containerView addSubview:aViewController.view];
                }
                completion:^(BOOL finished){
                    self.viewController = aViewController;
                }];    
}
4

2 回答 2

2

将代码移入viewDidLoad. 在这里,您确定视图已加载到内存中,因此可以进一步自定义。

- (void)viewDidLoad
{
    [super viewDidLoad];

    UILabel *sampleLabel = [[UILabel alloc] initWithFrame: CGRectMake(0,100,100,100)];
    UIImageView * basketItem = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"B.jpg"]];
    [self.view addSubview:sampleLabel];
    [self.view addSubview:basketItem];
    NSLog(@"%@",self.view.subviews);
    sampleLabel.text = @"Main Menu";    
}

如果您不使用 ARC,请注意内存泄漏。

笔记

我真的建议为此阅读 Apple 文档。你应该了解事情是如何运作的。希望有帮助。

http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/ViewLoadingandUnloading/ViewLoadingandUnloading.html

编辑

我不知道问题可能是什么。要使其工作,请尝试重写loadView(in MenuViewController) 方法,如下所示:

- (void)loadView
{
    CGRect applicationFrame = [[UIScreen mainScreen] applicationFrame];
    UIView *contentView = [[UIView alloc] initWithFrame:applicationFrame];
    contentView.backgroundColor = [UIColor redColor]; // red color only for debug purposes
    self.view = contentView;
}

保留viewDidLoad我写的方法,看看会发生什么。

创建视图控制器时,仅使用init方法。

MenuViewController *vc = [[MenuViewController alloc] init];
于 2012-12-29T16:42:22.470 回答
1

UILabelframesize.width=0

CGRectMake(0,100,0,100)

如果B.jpg没有添加到项目中,您UIImageView也将是空的。

此外,如果 secondUIViewController没有 XIB,请使用- (id)init方法而不是- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil.

于 2012-12-29T16:37:38.120 回答