我有2个视图控制器,第一个是情节提要(这是根),第二个是无节制。当我按下根视图控制器中的按钮时,它应该调用第二个控制器。

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

- (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个对象label和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;
                }];
}

最佳答案

将代码移到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(在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];

07-26 09:42