5
UIAlertView
のキャンセルボタンのタイトルをコンストラクタinitWithTitle:message:delegate:cancelButtonTitle:otherButtonTitles:
とは別に設定する方法はありますか? UIAlertView
を以前に初期化した後で、キャンセルボタンのタイトルを変更したい場合は、UIAlertView cancelButtonTitle
UIAlertView
のキャンセルボタンのタイトルをコンストラクタinitWithTitle:message:delegate:cancelButtonTitle:otherButtonTitles:
とは別に設定する方法はありますか? UIAlertView
を以前に初期化した後で、キャンセルボタンのタイトルを変更したい場合は、UIAlertView cancelButtonTitle
キャンセルボタンのテキストを後で変更することについてはわかりませんが(削除/編集ボタンのメソッドは表示されません)、キャンセルボタンを前面に指定していない場合は追加できます後で、あなたが望むどんなラベルでも、例えば
[action setCancelButtonIndex:[action addButtonWithTitle:@"Cancel"]];
otherButtonTitlesパラメータは、[alertView addButtonWithTitle:@ "Cancel"]と同等です。 – Evils