菜鸟教程小白 发表于 2022-12-12 10:29:50

ios - SizeToFit AsyncDisplayKit


                                            <p><p>我的 ASTextNod 通常需要 3 行,但我是从第二行转写的。
结果:我的 ASTextNod 显示 2 行和 3 个 trancate 点,但他的高度是 3 行的高度而不是 2。</p>

<p>我正在寻找类似于 ASTextNode 的 sizeToFit 的东西。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我花了一些时间来熟悉 ASDisplayKit 中的布局,并且在线资源非常有限。您需要使用 insetSpecs。但是,如果您能提供更多有关您尝试显示它的方式和位置的详细信息,那就更容易了。</p>

<p>这是一个 ASCellNode 示例,其文本具有动态高度和宽度,宽度小于屏幕尺寸,高度最大为 200 点。</p>

<pre><code>class MyNode: ASCellNode {
   var myText: ASTextNode

    init() {
      myText = ASTextNode()
      addSubnode(myText)
    }

    override func layoutSpecThatFits(constrainedSize: ASSizeRange) -&gt; ASLayoutSpec {

      let cellWidth = UIScreen.mainScreen().bounds.size.width
      myText.sizeRange = ASRelativeSizeRangeMake(
            ASRelativeSize(
                width: ASRelativeDimensionMakeWithPercent(0),
                height: ASRelativeDimensionMakeWithPoints(0)),
            ASRelativeSize(
                width: ASRelativeDimensionMakeWithPercent(cellWidth),
                height: ASRelativeDimensionMakeWithPoints(200)))

      let insetSpecs = ASInsetLayoutSpec(
            insets: UIEdgeInsets(top: 8, left: 8, bottom: 8, right: 8),
            child: myText)

      return insetSpecs
   }
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - SizeToFit AsyncDisplayKit,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/35458548/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/35458548/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - SizeToFit AsyncDisplayKit