请参阅代码
-(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"]];
} 但不幸的是,当我按下按钮时,我无法切换到另一个控制器没有任何反应,请帮助
答案 0 :(得分:0)
如果您正在使用Playing
UIViewController的nib文件,则应使用其他-init
:
Playing *playingVC = [[Playing alloc] initWithNibName:@"Playing" bundle:nil];
请记住更改笔尖名称。