0

目前我正在使用简单的 iPhone 应用程序,使用 Xcode 4.3.2 创建它,(不使用情节提要)当我将一个屏幕导航到另一个屏幕时,发现错误 Thread1: EXC_BAD_ACCESS(code=1.address=0x7669739),同样我使用故事板将一个屏幕导航到另一个屏幕,它工作正常。如何解决这个问题,请帮助我

提前致谢

我试过这个(不使用 StoryBoard)

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.title=@"Screen 1";

    UIButton *btn =[UIButton buttonWithType:UIButtonTypeRoundedRect];
    btn.frame=CGRectMake(10, 10, 200, 40);
    [btn setTitle:@"Test" forState:UIControlStateNormal];
    [btn addTarget:self action:@selector(GoToMethod) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:btn];
    // Do any additional setup after loading the view from its nib.
}

-(void)GoToMethod
{
    sample2 *s2 =[[sample2 alloc]init];
    [self.navigationController pushViewController:s2 animated:YES];
}
4

1 回答 1

0

您可以从开发人员文档或搜索 stackoverflow 中获得答案

 sample2 *s2 = [[sample2 alloc] initWithNibName:@"sample2" bundle:nil]; 
[self.navigationController pushViewController:s2 animated:YES];

您需要提及要加载的 nib/xib 名称。

于 2012-09-06T06:20:01.687 回答