@IBAction func signinButton(_ sender: AnyObject) {
self.ActivityIndicator.startAnimating()
let id = usernameTextField.text;
let pwd = passwordTextField.text;
if (id!.isEmpty || (pwd!.isEmpty)){
let alert = UIAlertController(title: "Information!", message: "Username and Password is not empety", preferredStyle: UIAlertControllerStyle.alert)
alert.addAction(UIAlertAction(title: "Dismiss", style: UIAlertActionStyle.destructive, handler: nil))
present(alert, animated: true, completion: nil)
self.present(alert, animated: true, completion: nil)
}
}
此錯誤: 警告:嘗試顯示其視圖不在窗口層次結構中的視圖!顯示新視圖控制器的控制檯警告
請幫助我..
在這種情況下要做的第一件事是谷歌的錯誤信息。你有沒有做過,並嘗試在那裏給的建議?那裏有很多東西。 –
你有目前的聲明兩次導致警報提交了兩次事件甚至在第一次完成之前,因此問題 –
重複的'現在'行。 – vadian