我在目标c中实现了SCLAlertView。现在,我们将项目移植到Swift。我已经在桥接头文件中添加了SCLAlertView.h。没问题。

我已经编写了这段代码,没有任何错误,但是当我执行代码时它没有显示警告。

let alert = SCLAlertView()

alert.showError("Title", subTitle: "This is a message", closeButtonTitle: "OK", duration: 0.1)

最佳答案

取代这个

alert.showError("Title", subTitle: "This is a message", closeButtonTitle: "OK", duration: 0.1)




alert.showSuccess(self, title: "Title", subTitle:"This is a message", closeButtonTitle: "OK", duration: 0.1)

10-08 05:25