我们可以在UIAlertView
上显示动画吗?而不是仅仅在警报中显示静态文本,例如"这是一个提醒...",我们可以在每一秒之后拥有动画文本,如
"This is an alert"
"This is an alert.."
"This is an alert...."
"This is an alert......"
"This is an alert"
"This is an alert.."
等等,直到警报视图被解除?
答案 0 :(得分:0)
title
和message
属性是UIAlertView
上唯一可以在警报显示后更改的属性,所以是的:
alert.title = @"New title";
alert.message = @"New message";