Else 语句中的 AlertView

AlertView in Else Statement

希望你能帮助我。我如何显示带有 else 语句的 alertView。在我的示例中,我检查文本字段是否为空。当它们清空时,它们将填充用户文本输入。现在,如果所有文本字段都填充了文本,我将显示一个警报视图。谢谢
} else if werttxt15.text.isEmpty { werttxt15.text = mylabel2.text } else if werttxt16.text.isEmpty { werttxt16.text = mylabel2.text } else if werttxt17.text.isEmpty { werttxt17.text = mylabel2.text } else if werttxt18.text.isEmpty { werttxt18.text = mylabel2.text } else if werttxt19.text.isEmpty { werttxt19.text = mylabel2.text } else { **ALERTVIEW** }

这应该非常简单。只需在您的 else 语句中添加以下简短示例代码:

let alert = UIAlertController(title: "Your title", message: "Your message", preferredStyle: .Alert)
alert.addAction(UIAlertAction(title: "Ok", style: .Default, handler: nil))
presentViewController(alert, animated: true, completion: nil)

这假设此代码在 UIViewController 实例中 运行。如果不是,您必须引用一个目标 viewController,在该目标上显示 UIAlertController。

在此处阅读更多内容: https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAlertController_class/