【发布时间】:2013-01-24 08:34:30
【问题描述】:
请参考以下代码:
UIAlertView *progressAlertView = [[UIAlertView alloc]
initWithTitle:@"Title"
message:@"Message"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:nil];
progressAlertView.message=@"Hello, I am the new one";
旁白总是读取“消息”,而从不读取第二行“你好,我是新消息”中设置的新消息字符串。无法更改 UIAlertView 的 bodyTextLabel 控件/子视图的此可访问性标签。
知道如何让 UIAlertView 在分配后更改其可访问性标签吗?
谢谢,
-希尔皮
【问题讨论】:
标签: ios accessibility uialertview