小编典典

如何以编程方式关闭没有任何按钮的UIAlertController?

swift

我呈现的是一个没有任何按钮的UIAlertViewController,因为它应该只是通知用户正在进行上传。该应用程序应该将一些文件上传到Amazon
S3(某些事情发生在并行线程上),而且我想关闭它时,恐怕对警报视图控制器的引用会丢失。

有什么问题的想法吗?我什至不知道如何调试它,因为“调试”区域中没有错误?

我有一个类级别的属性: var uploadInProgressAlert = UIAlertController()

我使用以下代码来显示没有按钮的警报(它可以正常工作):

self.uploadInProgressAlert = UIAlertController(title: "Uploading", message: "Please wait.", preferredStyle: .Alert)
self.presentViewController(self.uploadInProgressAlert, animated: true, completion: nil)

此代码用于关闭警报(不会关闭警报):
self.uploadInProgressAlert.dismissViewControllerAnimated(false, completion: nil)

在此线程中:iOS响应某人谈论“保留引用”而关闭UIAlertController。我不知道“保留参考”是什么意思,我认为这可能是问题的根源。

编辑: 我已经将上面的代码放在一个简单的测试应用程序中,并且可以正常工作。但是,当某些并行线程使事情变得复杂时,我找不到消除警报的方法。

var delay4s = NSTimer()
var delay8s = NSTimer()
var alert = UIAlertController()

func showAlert() {
    if NSClassFromString("UIAlertController") != nil {
        alert = UIAlertController(title: "Uploading", message: "Please wait! \n\n", preferredStyle: UIAlertControllerStyle.Alert)
        self.presentViewController(alert, animated: true, completion: nil)
    }
}

func dismissAlert(){
    self.alert.dismissViewControllerAnimated(true, completion: nil)
}

override func viewDidLoad() {
    super.viewDidLoad()
    delay4s = NSTimer.scheduledTimerWithTimeInterval(4.0, target: self, selector: "showAlert", userInfo: nil, repeats: false)
    delay8s = NSTimer.scheduledTimerWithTimeInterval(8.0, target: self, selector: "dismissAlert", userInfo: nil, repeats: false)
}

阅读 449

收藏
2020-07-07

共1个答案

小编典典

通常,父视图控制器负责解散模态显示的视图控制器(您的弹出窗口)。在Objective-C中,您可以在父视图控制器中执行以下操作:

[self dismissViewControllerAnimated:YES completion:nil];

Swift版本<3中的相同代码为:

self.dismissViewControllerAnimated(true, completion: nil)

Swift 3.0:

self.dismiss(animated: true, completion: nil)
2020-07-07