ios – UILabel在启动时不在自定义UITableViewCell中执行多行,但在滚动后执行

ios – UILabel在启动时不在自定义UITableViewCell中执行多行,但在滚动后执行,第1张

概述编辑#1 我在github上添加了一个项目链接: https://github.com/trestles/testtable 这是我第一次与Autolayout打交道,所以我希望我会做一些业余错误.老实说,我知道我是如何做这个 *** 纵帧,但无法通过内容裁剪自动布局正常工作.部分问题是,如果我们总是处于纵向模式,我应该使用框架吗? 我有一个自定义的UITableViewCell,我有一些UILabel. 编辑#1

我在github上添加了一个项目链接:
https://github.com/trestles/testtable

这是我第一次与autolayout打交道,所以我希望我会做一些业余错误.老实说,我知道我是如何做这个 *** 纵帧,但无法通过内容裁剪自动布局正常工作.部分问题是,如果我们总是处于纵向模式,我应该使用框架吗?

我有一个自定义的UItableVIEwCell,我有一些UILabel.它们设置为numberOflines = 0.有时,他们会截断文本.像这样:

我该如何解决?我试过在vIEwDIDLoad中重新加载数据,但这似乎并不重要.大多数情况下,当您滚动时,它会自行修复(但并非总是如此).它可以是任何三个UILabel,并且与文本数量无关.我第一次使用带有自动布局的UILabels,所以很可能是我犯了一些错误.这是我的UILabel属性:

和第一个标签的布局:

解决方法 您的自动布局非常完美,只是因为您在xib中使用默认文本设置自动布局而出现问题.并在您vIEwDIDLoad中,您正在更新UILabel文本但不以编程方式更新布局.所以只留下一行如下.
self.mainTV.layoutIfNeeded();

在vIEwDIDLoad方法中重新加载UItableVIEw之前添加上面的行.所有的事情都很好.

示例:

overrIDe func vIEwDIDLoad() {    super.vIEwDIDLoad()    self.mainTV.dataSource=self    self.mainTV.delegate=self    self.mainTV.rowHeight = UItableVIEwautomaticDimension    self.mainTV.estimatedRowHeight = 84.0    //self.mainTV.registerClass(MytableVIEwCell.self,forCellReuseIDentifIEr: "MyCustomCell")    var tmps = [String]()    tmps.append("ABC But here is an artist. He desires to paint you the dreamIEst,shadIEst,quIEtest,most enchanting bit of romantic landscape in all the valley of the Saco. What is the chIEf element he employs?")    tmps.append("DEF But here is an artist.")    tmps.append("GHI But here is an artist. He desires to paint you the dreamIEst,most enchanting bit")    for var i=0; i<10; i++    {      var menuItem=EKMenuItem()      let randomIndex1 = Int(arc4random_uniform(UInt32(tmps.count)))      menuItem.header = "\(i) \(tmps[randomIndex1])"      let randomIndex2 = Int(arc4random_uniform(UInt32(tmps.count)))      menuItem.detail = "\(i) \(tmps[randomIndex2])"      let randomIndex3 = Int(arc4random_uniform(UInt32(tmps.count)))      menuItem.price = "\(i) \(tmps[randomIndex3])"      //tmpItem.price = "my price"      dataItems.append(menuItem)    }    self.vIEw.backgroundcolor = UIcolor.greencolor()    self.mainTV.layoutIfNeeded();    self.mainTV.reloadData()    // Do any additional setup after loading the vIEw,typically from a nib.  }

希望这对你有所帮助.

总结

以上是内存溢出为你收集整理的ios – UILabel在启动时不在自定义UITableViewCell中执行多行,但在滚动后执行全部内容,希望文章能够帮你解决ios – UILabel在启动时不在自定义UITableViewCell中执行多行,但在滚动后执行所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1103181.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存