Swift   发布时间:2022-04-30  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了swift – 无法调用非函数类型UIAlertAction的值大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我不确定这个功能有什么问题.我正在尝试提示用户是否要删除所选照片.

如果删除照片的功能返回错误,我想向用户显示错误.

Xcode在errorController.addAction行上失败,消息“无法调用函数类型UIAlertAction的值”

我正在使用Swift 2

@IBACtion func deletePhoto(sender: AnyObject) {
    let alertController = UIAlertController(title: "delete Photo",message: "Are you sure you want to delete this photo?",preferredStyle: .Alert)
    let okAction = UIAlertAction(title: "OK",style: .Default) { UIAlertAction in

        self.photoGateway!.delete(self.photo!.id!,completion: { (withError: Bool) -> Void in

            if (withError == truE) {
                let errorController = UIAlertController(title: "delete Failed",message: "blah",preferredStyle: UIAlertControllerStyle.Alert)
                //  The next line is causing the error
                errorController.addAction(UIAlertAction(title: "Ok",style: UIAlertActionStyle.Default,handler: nil))
                self.presentViewController(errorController,animated: true,completion: nil)
            } else {
                self.dismissviewControllerAnimated(true,completion: nil)
            }

        })

    }

    let cancelAction = UIAlertAction(title: "Cancel",style: .Cancel) { UIAlertAction in
        print("Cancelled")
    }

    alertController.addAction(okAction)
    alertController.addAction(cancelAction)
    self.presentViewController(alertController,completion: nil)
}

如果我拿出违规行,那么一切正常,只是用户无法解除警报

解决方法

固定它.更改:

errorController.addAction(UIAlertAction(title: "Ok",handler: nil))

至:

errorController.addAction(UIKit.UIAlertAction(title: "Ok",handler: nil))

大佬总结

以上是大佬教程为你收集整理的swift – 无法调用非函数类型UIAlertAction的值全部内容,希望文章能够帮你解决swift – 无法调用非函数类型UIAlertAction的值所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。