У меня есть 2 UIAlert, который отображается, я нажимаю на кнопку. Я хочу, чтобы второе оповещение было видно только тогда, когда первый UIAlert отклонен, то есть когда мы нажали первую кнопку OK.
Как мне поступить, пожалуйста? Ниже мой код:
- (IBAction)button:(id)sender {
UIAlertView *view;
view = [[UIAlertView alloc]
initWithTitle: @"Message"
message: @"Adding..."
delegate: self
cancelButtonTitle: @"OK" otherButtonTitles: nil];
[view show];
MyAppAppDelegate *appDelegate = (MyAppAppDelegate *)[[UIApplication sharedApplication] delegate];
if (appDelegate.array_presets.count) {
view = [[UIAlertView alloc]
initWithTitle: @"Message"
message: @"limit already reached"
delegate: self
cancelButtonTitle: @"OK" otherButtonTitles: nil];
[view show];
}
[view autorelease];
}