QuickDialog QEntryElement省略号和重叠问题

时间:2016-06-08 19:57:06

标签: ios ipad quickdialog

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

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

1 个答案:

答案 0 :(得分:0)

因此,对于省略号问题,我这样做了......

我检查了QuickDialog,所以我在本地使用它 像这样修改了QTableViewCell:

- (void)layoutSubviewsInsideBounds:(CGRect)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