対処方法をメモ
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@”タイトル” message:@”メッセージ”
delegate:self cancelButtonTitle:@”完了” otherButtonTitles:nil];// [alert show]; を下記の文に変更
[alert performSelectorOnMainThread:@selector(show) withObject:nil waitUntilDone:YES];
コメント