【发布时间】:2015-07-07 04:44:39
【问题描述】:
我有一个显示 UIAlertController 的函数。在标题和文本下方,我想为每个图像显示一个动画图像。我有 13 张图片要循环播放。
func alertDownloadInProgress(text:String, sender:UIViewController) -> UIAlertController {
var alert = UIAlertController(title: "Alert", message: text, preferredStyle: UIAlertControllerStyle.Alert)
sender.presentViewController(alert, animated: true, completion: nil)
return alert
}
是否可以使用 UIAlertController 或者我必须完全自定义我的弹出窗口?
【问题讨论】:
标签: ios swift animation uialertcontroller