投稿が正しくない場合はご容赦ください...初めての投稿です。
これに似た質問をいくつか見ましたが、同じ問題はありません。IOS 6.1 と Xcode 4.6 を実行しています。問題は、didDismiss が呼び出されず、willDismiss のみが呼び出されることです。私のコードは、ログ出力とともに以下にあります。何か案は?
#import "MenkLabUIAlertTestViewController.h"
@interface MenkLabUIAlertTestViewController ()
@end
@implementation MenkLabUIAlertTestViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
}
- (IBAction)test:(id)sender {
UIAlertView *av = [[UIAlertView alloc] initWithTitle:@"Encrypting File(s)" message:@"Please wait..." delegate:self cancelButtonTitle:nil otherButtonTitles:nil, nil];
// UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
[av show];
[av dismissWithClickedButtonIndex:-1 animated:YES];
}
- (void) alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex {
NSLog(@"willDISMIS");
}
- (void) alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex {
NSLog(@"didDISMIS");
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
ログ出力:
2013-07-08 17:27:04.055 testUIAlertView[10534:11303] willDISMIS
これは単なるテスト アプリですが、現在のアプリケーションに存在する問題とまったく同じです。
ありがとうございます。これに一日中頭を悩ませています!