如何將accessibilityLabel
添加到UIAlertView
按鈕?如何將`accessibilityLabel`添加到`UIAlertView`按鈕?
UIAlertView *alert = [[UIAlertView alloc] initWithTitle: @"Announcement"
message: @"message!"
delegate: nil
cancelButtonTitle: @"cancelButton"
otherButtonTitles: @"otherButton"];
[alert show];
默認可訪問性有什麼問題?我不認爲有一種(官方)方式來改變它。 – Wain