Goodevening
In IOS6.0 dismissModalViewControllerAnimated:(BOOL) is deprecated. Sadly i can't find any other solution on the internet. Anybody any toughts? I have a closebutton with a method. In that method the modalview should be closed.
Making of button:
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];
And the method:
- (void)closeModalView:(id)sender{
//This is deprecated
[self dismissModalViewControllerAnimated:YES];
}
Thx in advance!