UIAlertView でキーボードが自動的にポップアップしないという iOS 8 の不具合のため、私の唯一の代替手段は UIAlertController にアップグレードすることです。ただし、didDismissWithButtonIndex は、私がしなければならなかったことを行うのに十分柔軟でしたが、提案された新しいソリューションはそうではありません (以下の例を参照)。didDismissWithButtonIndex がないと、UIAlertController にアップグレードできません。以下以外に同様の解決策はありますか?
UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:cancelButtonTitle style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
}];
UIAlertAction *otherAction = [UIAlertAction actionWithTitle:otherButtonTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
}];
[alertController addAction:cancelAction];
[alertController addAction:otherAction];