Can I remove a subview with cancelButtonTitle of a UIAlert? Because I write this:
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Done!"
message:[@"It's all ok!"]
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[self dismissModalViewControllerAnimated:YES];
but this code remove my subview before I push cancelButtonTitle, how can I do?
Yes, implement the UIAlertViewDelegate method
alertView:didDismissWithButtonIndex:and dismiss your view there.Set the delegate to self first:
Could look like this: