我在iPhone应用程序中有三个按钮的视图,想要通过单击特定按钮转到另一个视图,尝试添加目标方法,其工作正常但是当我们在导航后转到下一个视图并单击后退按钮他们崩溃了?
这是我的代码。
- (void)viewDidLoad {
[super viewDidLoad];
helpButton=[UIButton buttonWithType:UIButtonTypeRoundedRect];
helpButton.frame= CGRectMake(5, 370, 90, 30);
[helpButton setTitle:[NSString stringWithFormat:@"Help"] forState:UIControlStateNormal];
[helpButton addTarget:self action:@selector(btnClicked:) forControlEvents:UIControlEventTouchUpInside];
helpButton.tag=1;
[self.view addSubview:helpButton];
}
请帮帮我
提前致谢
答案 0 :(得分:0)
当我查看你的代码时,似乎你的helpButton是一个类变量......如果是,你错过了一个retain:
helpButton=[[UIButton buttonWithType:UIButtonTypeRoundedRect] retain];
不确定它会解决您的问题,但它可以帮助......