我正在使用 QuickDialog 库中的 QEntryElement
。出于某种原因,在 iPad 中看到时,QEntryElement
的标题有省略号。我应该如何解决这个问题。
另一个问题是在 iPad 横向模式下键入的文本与 QEntryElement
的标题重叠。
let userNameElement: QEntryElement = QEntryElement(key: "ACCOUNT")
userNameElement.title = "Account"
userNameElement.keyboardType = UIKeyboardType.EmailAddress
userNameElement.autocapitalizationType = UITextAutocapitalizationType.None
userNameElement.autocorrectionType = UITextAutocorrectionType.No
所以对于省略号问题我这样做了...
我检查了 QuickDialog,所以我在本地拥有它 像这样修改 QTableViewCell:
- (void)layoutSubviewsInsideBoundsCGRect)bounds {
...
self.textLabel.frame = CGRectMake(15, self.textLabel.frame.origin.y,
self.textLabel.frame.size.width, self.textLabel.frame.size.height);
}
我知道它不是很好的解决方案,但它看起来更好......
关于ios - QuickDialog QEntryElement 省略号和重叠问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37711782/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |