アラートをパーソナライズするポッドを追加しました(PCLBlurEffectAlert) アラート、アラートアクション、およびアラートのテキストフィールドを編集した後、テキストフィールドを使用します。私に何ができる?Swift - 'fileprivate'の保護レベルのため 'textfields'にアクセスできません
let alert1 = PCLBlurEffectAlertController(title: NSLocalizedString("AGGENTRATA", comment: ""),
message: NSLocalizedString("insENTRATA", comment: ""),
effect: UIBlurEffect(style: .dark),
style: .alert)
alert1.addTextField(with: { (textField: UITextField!) in
textField.placeholder = NSLocalizedString("ENTRATA_LOCAL", comment: "") //impostiamo il segnaposto del field
textField.isSecureTextEntry = false //se fosse un campo Password mettremmo true
textField.keyboardType = UIKeyboardType.numberPad
})
alert1.addAction(PCLBlurEffectAlertAction(title: NSLocalizedString("ANNULLA_LOCAL", comment: ""), style: .cancel, handler: { (action) in
UIView.animate(withDuration: 0.4, animations: {
self.blurVisual.effect = nil
})
}))
alert1.addAction(PCLBlurEffectAlertAction(title: NSLocalizedString("AGG", comment: ""), style: .default, handler: { (action) in
UIView.animate(withDuration: 0.4, animations: {
self.blurVisual.effect = nil
})
let textField = alert1.textFields![0] as UITextField
はコードではありません画像を投稿してください。 –
ok、私はコード – MettDich