Swift를 통해 사용자 이름과 암호를 입력하는 경고 표시(UIAlertController)
개시하다 UIAlertController
를 사용하면 UITextField
의 경보를 처리할 수 있습니다.
간단한 예로 사용자 이름과 비밀번호를 입력할 수 있습니다.
전제 조건
UIButton
의@IBAction
에서 아래 코드@IBOutlet
self.user_name
,self.password
의 부분사용자 이름과 암호를 입력할 수 있는 경고
ViewControllervar alert = UIAlertController( title:"ユーザー名とパスワード", message: "入力してね",
preferredStyle: UIAlertControllerStyle.Alert)
alert.addTextFieldWithConfigurationHandler( { (user: UITextField!) -> Void in
})
alert.addTextFieldWithConfigurationHandler( { (pw: UITextField!) -> Void in
pw.secureTextEntry = true
})
alert.addAction(
UIAlertAction(title: "OK", style: .Default, handler: {
(action: UIAlertAction!) -> Void in
let textFields:Array<UITextField>? = alert.textFields as Array<UITextField>?
if textFields != nil {
for textField:UITextField in textFields! {
// secureTextEntryの状態で判定
if textField.secureTextEntry == true {
// ラベルにパスワード表示
self.password.text = textField.text
} else {
// ラベルにユーザー名表示
self.user_name.text = textField.text
}
}
}
})
)
alert.addAction( UIAlertAction(title: "Cancel", style: .Cancel) {
action in
})
presentViewController(alert, animated: true, completion: nil)
끝말
var alert = UIAlertController( title:"ユーザー名とパスワード", message: "入力してね",
preferredStyle: UIAlertControllerStyle.Alert)
alert.addTextFieldWithConfigurationHandler( { (user: UITextField!) -> Void in
})
alert.addTextFieldWithConfigurationHandler( { (pw: UITextField!) -> Void in
pw.secureTextEntry = true
})
alert.addAction(
UIAlertAction(title: "OK", style: .Default, handler: {
(action: UIAlertAction!) -> Void in
let textFields:Array<UITextField>? = alert.textFields as Array<UITextField>?
if textFields != nil {
for textField:UITextField in textFields! {
// secureTextEntryの状態で判定
if textField.secureTextEntry == true {
// ラベルにパスワード表示
self.password.text = textField.text
} else {
// ラベルにユーザー名表示
self.user_name.text = textField.text
}
}
}
})
)
alert.addAction( UIAlertAction(title: "Cancel", style: .Cancel) {
action in
})
presentViewController(alert, animated: true, completion: nil)
alert.addAction
블록이 엉망으로 변secureTextEntry
이외에 텍스트 필드를 판정하는 방법이 있습니까?Reference
이 문제에 관하여(Swift를 통해 사용자 이름과 암호를 입력하는 경고 표시(UIAlertController)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/hirocueki/items/1d02956fcceddfa69769텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)