菜鸟教程小白 发表于 2022-12-12 09:50:44

ios - 从父 View 突出时如何使 subview 的一部分不可见?


                                            <p><p>我在父 View 中有一个 UIViewsubview ,其框架可能延伸到父 View 的框架之外:</p>

<p>例如superview.frame = CGRectMake(0,0,100,100);
   subview.frame = CGRectMake(50,50,60,60);</p>

<p>即 subview 将在右下角从父 View “突出”10 个像素。</p>

<p>我怎样才能使它只有在父 View 框架内的 subview 部分可见,而突出部分不可见?</p>

<p>上下文: subview 实际上是一个UILabel,不能调整大小。如果它突出,我只想显示一半的文字。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>将 superview 的 <code>clipsToBounds</code> 属性设置为 <code>YES</code>。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 从父 View 突出时如何使 subview 的一部分不可见?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/23665035/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/23665035/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 从父 View 突出时如何使 subview 的一部分不可见?