iOS6で UIAlertView で落ちる場合の対処方法

対処方法をメモ
 

UIAlertView *alert = [[UIAlertView alloc]
    initWithTitle:@”タイトル” message:@”メッセージ”
    delegate:self cancelButtonTitle:@”完了” otherButtonTitles:nil];

// [alert show]; を下記の文に変更
[alert performSelectorOnMainThread:@selector(show) withObject:nil waitUntilDone:YES];

この記事が気に入ったら
いいねしてね!

よかったらシェアしてね!
  • URLをコピーしました!
  • URLをコピーしました!

コメント

コメントする

目次