我无法使用presentModalViewController显示另一个控制器:

时间:2011-11-08 15:07:48

标签: iphone

请参阅代码

   -(IBAction)startGame{
NSLog(@"Button is pressed");

CharadesAppDelegate  *del=(CharadesAppDelegate*)[[UIApplication sharedApplication]delegate];
[del setAllTeams:teamDict];
[del setScore:selectedScroll];
Playing *p=[[Playing alloc]init];
    [self presentModalViewController:p animated:YES];

}

我想呈现只包含以下行的播放控制器

    - (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor=[UIColor colorWithPatternImage:[UIImage imageNamed:@"bg.png"]];

} 但不幸的是,当我按下按钮时,我无法切换到另一个控制器没有任何反应,请帮助

1 个答案:

答案 0 :(得分:0)

如果您正在使用Playing UIViewController的nib文件,则应使用其他-init

Playing *playingVC = [[Playing alloc] initWithNibName:@"Playing" bundle:nil];

请记住更改笔尖名称。