我正在使用 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
Best Answer-推荐答案 strong>
所以对于省略号问题我这样做了...
我检查了 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/
|