菜鸟教程小白 发表于 2022-12-13 04:23:43

ios - UIButton 不在设备或模拟器上显示背景图像


                                            <p><p>我真的以为这样的事情不会发生在我身上,但事实就是这样:</p>

<p>我在 StoryBoard 上设置了一些按钮。当我将应用程序编译到设备或模拟器中时,其中一个按钮显示图像而其他按钮不显示。</p>

<p>我已经检查了图像是否已分配给目标并且资源是否出现在项目中。</p>

<p>有什么想法吗?</p>

<p> <img src="/image/6nPU6.jpg" alt="WAT?"/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>嗯,这很尴尬。</p>

<p>原来我正在修改 superview.bounds 由于以前的接口(interface)问题而我忘记了它们。</p>

<p>有问题的代码:</p>

<p>//安排布局:
- (void)viewWillLayoutSubviews{
    [ superView WillLayoutSubviews];
    self.view.superview.bounds = CGRectMake(0, 0, 356, 421);
}</p>

<p>所以我删除了这一行:self.view.superview.bounds = CGRectMake(0, 0, 356, 421);现在一切正常。</p>

<p>教训:如果您希望自动布局工作,请不要玩弄您的 SUPERVIEW 的界限。</p>

<p>感谢@Maverick 和@Fahim Parkar 为我指明了正确的方向:-)</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UIButton 不在设备或模拟器上显示背景图像,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/27705555/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/27705555/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UIButton 不在设备或模拟器上显示背景图像