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

标题: ios - 动态排列UIstackView中的UILabels [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 17:12
标题: ios - 动态排列UIstackView中的UILabels

我将标签作为 subview 添加到 UIstackview 使用排列的SubView 属性。

如果我保持 Stackview 轴水平,会发生什么情况, 我得到一条水平的 UILabels

label1 label2 label3 label4.....

如果我保持垂直,我会得到一条垂直的 UILabels 如下所示

label1
label2
label3
and so on

但我想要实现的是这个

label1, label2(if it fits) otherwise take it below
label3, label4
label5 and so on

目前我的代码是这样的

 uiLabel1.numberOfLines = 1
            uiLabel1.backgroundColor = THEMECOLOR
            uiLabel1.font = UIFont.preferredFontForTextStyle(UIFontTextStyleCaption1)
            uiLabel1.textColor = topicColor
            uiLabel1.layer.cornerRadius = (CGFloat)(5.0)
            uiLabel1.layer.masksToBounds = true
            uiLabel1.sizeToFit()
            uiLabel1.userInteractionEnabled = true           


            self.dynamicStackView.addArrangedSubview(uiLabel1)



Best Answer-推荐答案


我相信 UICollectionView 的 Flow Layout 是您所需要的。看看链接here

关于ios - 动态排列UIstackView中的UILabels,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38058675/






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