こんばんは
IOS6.0 では、dismissModalViewControllerAnimated:(BOOL) は廃止されました。悲しいことに、インターネット上で他の解決策を見つけることができません。誰かが何か考えていますか?メソッド付きの閉じるボタンがあります。その方法では、モーダルビューを閉じる必要があります。
ボタンの作り方:
UIButton *closeBtn = [[UIButton alloc] initWithFrame:CGRectMake(200, 200, 50, 50)];
closeBtn.backgroundColor = [UIColor purpleColor];
[closeBtn addTarget:self action:@selector(closeModalView:) forControlEvents:UIControlEventTouchUpInside];
[self addSubview:closeBtn];
そして方法:
- (void)closeModalView:(id)sender{
//This is deprecated
[self dismissModalViewControllerAnimated:YES];
}
事前にthx!