请参考以下代码:
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 在分配后更改其可访问性标签吗?
谢谢,
-希尔皮