“您是否想保存此密码”对话框出现问题。当它弹出并且用户回到主屏幕并返回到应用程序时,对话框消失,并且当触摸文本框时他不能举起键盘。在iOS 13上,它唯一的“工作方式”是这样。在iOS 12上,它可以正常工作,因为当用户回到应用程序时,对话框仍然存在。然后,他可以保存密码或立即不点击并开始输入。任何想法如何解决这个问题?它可能是某种iOS 13错误。
答案 0 :(得分:2)
问题
OP写道:如果您启用了关联的域,则在iOS 13中使用了自动填充功能,那么您会得到一个UIAlertController,要求您保存或更新密码,有关详细信息,请参见https://developer.apple.com/videos/play/wwdc2017/206/。
iOS 13的问题在于,如果用户在点击“更新密码”或“不立即”按钮之前将应用程序置于后台,则在切换回前台后不再显示文本字段的键盘,看到这里:
由于它是操作系统的系统对话框,因此您无法在进入后台之前以编程方式将其关闭。
因此,在苹果公司解决此问题之前,可以:
解决方法
一种解决方法可能是:
然后看起来像这样:
请勿使用自动填充
为了不使用新的自动填充功能,应不设置textContentType,因此不:
userTextField.textContentType = .username
passwordTextField.textContentType = .password
也不要将isSecureTextEntry设置为true。实际上,这意味着您需要自己的机制来隐藏密码文本字段的条目。有关建议,请参见iOS 11 disable password autofill accessory view option?
SecRequestSharedWebCredential
在登录页面上,可以在viewDidLoad中使用
if #available(iOS 13, *) {
requestCredentials()
} else {
userTextField.textContentType = .username
passwordTextField.textContentType = .password
}
private func requestCredentials() {
SecRequestSharedWebCredential("software7.com" as CFString, nil, {
credentials, error -> Void in
guard error == nil else { return }
guard let credentials = credentials, CFArrayGetCount(credentials) > 0 else { return }
let unsafeCredential = CFArrayGetValueAtIndex(credentials, 0)
let credential: CFDictionary = unsafeBitCast(unsafeCredential, to: CFDictionary.self)
let dict: Dictionary<String, String> = credential as! Dictionary<String, String>
let username = dict[kSecAttrAccount as String]
let password = dict[kSecSharedPassword as String]
DispatchQueue.main.async {
self.userTextField.text = username;
self.passwordTextField.text = password;
}
});
}
SecAddSharedWebCredential
在第二个ViewController的viewDidLoad中,可以使用:
if #available(iOS 13, *) {
updateCredentials()
} else {
//works automatically with autofill
}
private func updateCredentials() {
SecAddSharedWebCredential("software7.com" as NSString as CFString,
self.userName as NSString as CFString,
self.password as NSString as CFString,
{ error in if let error = error { print("error: \(error)") }
})
}
这看起来不像iOS 13的自动填充功能,但是它们允许您在用户转为bg / fg时继续提供自动填充和共享凭据,从而继续使用键盘。修复错误后,可以删除此解决方法。
答案 1 :(得分:0)
>>> df
col
0 1
1 1
2 1
3 0
4 1
>>> type_map = {0: 'TypeA', 1: 'TypeB'}
>>> df['type_map'] = df['col'].map(type_map) # new col to be named 'type_map'
>>> df
col type_map
0 1 TypeB
1 1 TypeB
2 1 TypeB
3 0 TypeA
4 1 TypeB