我正在使用QEntryElement
QuickDialog 库。出于某种原因,QEntryElement
在 iPad 中看到的标题有省略号。我应该如何解决这个问题。
另一个问题是在 iPad 横向模式下键入的文本与QEntryElement
.
let userNameElement: QEntryElement = QEntryElement(key: "ACCOUNT")
userNameElement.title = "Account"
userNameElement.keyboardType = UIKeyboardType.EmailAddress
userNameElement.autocapitalizationType = UITextAutocapitalizationType.None
userNameElement.autocorrectionType = UITextAutocorrectionType.No