菜鸟教程小白 发表于 2022-12-13 16:37:13

ios - 改变方向时,框架 reactSetFrame :(CGRect)frame not changed


                                            <p><p>我有一个自定义的 Native UI 组件,我正在使用 <code>(void)reactSetFrame:(CGRect)frame</code>(<code>UIView+React.h</code> 中的方法),当方向改变,这个方法被调用,但是对于旧框架,框架没有改变。</p>

<p>我的用法:</p>

<pre><code>- (void)reactSetFrame:(CGRect)frame {
    ;
    ...
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我相信你可以利用这个:)</p>

<pre><code>override func drawRect(rect : CGRect) {
      print(rect)
    }

override func traitCollectionDidChange(previousTraitCollection: UITraitCollection?) {
      print(&#34;hi&#34;)
      self.setNeedsDisplay()
}
</code></pre>

<p>调用 self.setNeedsDisplay 时会调用 Draw rect,您可以覆盖 <code>traitCollectionDidChange</code> 捕获它并强制 View 自行布局 :) </p>

<p><strong>编辑</strong></p>

<p>刚刚意识到你正在使用 Objective-c</p>

<pre><code>- (void)drawRect:(CGRect)rect {
    NSLog(@&#34;%@&#34;,NSStringFromCGSize(rect.size));
}

-(void)traitCollectionDidChange:(UITraitCollection *)previousTraitCollection {
    ;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 改变方向时,框架 reactSetFrame :(CGRect)frame not changed,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/37316882/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/37316882/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 改变方向时,框架 reactSetFrame :(CGRect)frame not changed