静岡県富士市在住のiPhoneアプリ開発者がiPhoneアプリの開発に関する技術的な情報やネタなどを中心に書きます。 盲点だったのでメモ UIAlertView での動作は - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex; で受け取るので、複数のUIAlertViewを使う場合は、クラスに変数を設けて、アラートを表示するときに設定してあげる 例: #define cAlertType_A 0 #define cAlertType_B 1 alertType = cAlertType_A; //ここでUIAlertViewを表示 --- alertType = cAlertType_B; //ここでUIAlertViewを表示 みたいにして - (void)alert