我正在为 iphone 开发一个 vin 代码扫描器应用程序。一切都很顺利,但是当我尝试打开一个笔尖时,它会显示在我的另一个笔尖文件上。这是我启动新 nib 文件的按钮的代码。
-(IBAction)dOne{
SellAutoViewController *autoController = [[SellAutoViewController alloc] initWithNibName: @"SellAutoViewController" bundle: nil];
[self.view addSubview:autoController.view];
}
这是我在 SellAutoViewController.mi 中所做的,使用 shoulautorotate 函数以纵向模式显示它,但什么也没发生
-(BOOL)shouldAutorotate{
return YES;
}
-(NSUInteger)supportedInterfaceOrientations{
return (UIInterfaceOrientationMaskPortrait);
}
这是点击完成按钮之前的视图,它将加载 SellAutoViewController https://www.dropbox.com/s/8ssi4n50dcaqf28/Screenshot%202013.05.06%2013.26.54.png ,这是我点击完成按钮时发生的情况。:( https://www.dropbox.com/s/q6z6a4dr0n198n3/Screenshot%202013.05.06%2013.27.13.png