私のコード:
UIView *screen=[[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 480)];
screen.backgroundColor=[UIColor grayColor];
UIView *screen2=[[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 480)];
screen.backgroundColor=[UIColor redColor];
screen2.backgroundColor=[UIColor greenColor];
UITabBarController *tab=[[UITabBarController alloc]init];
[tab setViewControllers:[NSArray arrayWithObjects:screen,screen2, nil]];
self.view=tab.view;
しかし、実行すると、[[tab setViewControllers:[NSArray arrayWithObjects:screen,screen2, nil]]; で例外が発生します。
誰でも理由を教えてもらえますか?, 私は初心者です ありがとう