OStack程序员社区-中国程序员成长平台

标题: ios - QuickDialog QEntryElement 省略号和重叠问题 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-11 16:41
标题: ios - QuickDialog QEntryElement 省略号和重叠问题

我正在使用 QuickDialog 库中的 QEntryElement。出于某种原因,在 iPad 中看到时,QEntryElement 的标题有省略号。我应该如何解决这个问题。

iPad Portrait

另一个问题是在 iPad 横向模式下键入的文本与 QEntryElement 的标题重叠。 iPad Landscape

 let userNameElement: QEntryElement = QEntryElement(key: "ACCOUNT")
    userNameElement.title = "Account"
    userNameElement.keyboardType = UIKeyboardType.EmailAddress
    userNameElement.autocapitalizationType = UITextAutocapitalizationType.None
    userNameElement.autocorrectionType = UITextAutocorrectionType.No



Best Answer-推荐答案


所以对于省略号问题我这样做了...

我检查了 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);
}

我知道它不是很好的解决方案,但它看起来更好......

enter image description here

当我评论添加的行时,我得到了这个: enter image description here

关于ios - QuickDialog QEntryElement 省略号和重叠问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37711782/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4