在 UIAlertView 中重新定位 Activity 指示器

Reposition the Activity Indicator inside UIAlertView

我正在使用内部带有 Activity 指示器的 UIAlertView,但该指示器的位置不正确。我确定我遗漏了一些非常小的东西,但如果有人能帮助我,那就太好了。下面是我的代码和相应的代码片段

var progressAlert: UIAlertView = UIAlertView(title: "Downloading", message: "Patients information...", delegate: nil, cancelButtonTitle: nil);


    var loadingIndicator: UIActivityIndicatorView = UIActivityIndicatorView()
    loadingIndicator.center = CGPointMake(progressAlert.bounds.size.width/2, progressAlert.bounds.size.height - 150)
    loadingIndicator.hidesWhenStopped = true
    loadingIndicator.activityIndicatorViewStyle = UIActivityIndicatorViewStyle.Gray
    loadingIndicator.startAnimating()

    progressAlert.setValue(loadingIndicator, forKey: "accessoryView")
    progressAlert.show()

编辑: 按照 Matt 的回答,最终创建了自定义视图,它非常有效。

这里有两个问题。一是您正在假设 progressAlert 的最终大小 - 您根据 progressAlert 框架 现在 [=20] 定位 activity 指标=],而不是根据它 出现时 的样子。您可以通过使用约束而不是绝对 center 值来解决这个问题。

但是,更大的问题是你的做法是违法的。不要将您自己的子视图添加到 UIAlertView。相反,用你自己的视图制作你自己的视图控制器并呈现它。它可以看起来像一个警报(即小,居中,使界面的其余部分变暗)但现在它是你的视图,你可以在其中做任何你喜欢的事情。

import Foundation
import UIKit

class YourFunction{
//#MARK: - showAlertView With Activity indicator
class func showAlertViewWithIndicator(TitleMessage: String, timeInterval: Double,view: UIViewController){
    let alert = UIAlertView()
    alert.delegate = self
    alert.title = TitleMessage
    let loadingIndicator: UIActivityIndicatorView = UIActivityIndicatorView(frame: CGRectMake(50, 10, 37, 37)) as UIActivityIndicatorView
    loadingIndicator.center = view.view.center
    loadingIndicator.hidesWhenStopped = true
    loadingIndicator.activityIndicatorViewStyle = UIActivityIndicatorViewStyle.Gray
    loadingIndicator.startAnimating();

    alert.setValue(loadingIndicator, forKey: "accessoryView")
    loadingIndicator.startAnimating()

    alert.show()

    let delay = timeInterval * Double(NSEC_PER_SEC)
    let time = dispatch_time(DISPATCH_TIME_NOW, Int64(delay))
    dispatch_after(time, dispatch_get_main_queue(), {
        alert.dismissWithClickedButtonIndex(-1, animated: true)

    loadingIndicator.stopAnimating()
    loadingIndicator.hidesWhenStopped = true
    view.dismissViewControllerAnimated(true, completion: nil)

    })

}
}

我给你写了全局函数。这将显示带有标题和 activity 指示符的 UIAlertView。您可以根据 TimeInterval 变量设置时间。您可以在 viewcontroller 中的任何地方调用它。只需输入 YourFunction.showAlertViewWithIndicator("Hello World",timeInterval:3.0,self)

用于swift 2x 只是想帮忙:)