菜鸟教程小白 发表于 2022-12-13 05:38:12

ios - 设置 UIButton 的框架但保持图像大小相同


                                            <p><p>我的应用中有一个 UIButton,它非常小。有时很难点击它。有没有办法在按钮周围留出 20px 的边距,保持图像大小相同?这是我的代码:</p>

<pre><code>self.helpButton= ;
forState:UIControlStateNormal];
[self.helpButton addTarget:self
         action:@selector(showHelp)
forControlEvents:UIControlEventTouchUpInside];

if ([[ UIScreen mainScreen ] bounds ].size.height == 568 ) {
    self.helpButton.frame = CGRectMake(280.0, 528.0, 20, 20);
} else {
    self.helpButton.frame = CGRectMake(280.0, 440.0, 20, 20);
}
</code></pre>

<p>基本上,我希望有更大的点击区域,但保持按钮大小相同。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>尝试使用 setImageEdgeInsets。检查一下。</p>

<pre><code>if ([[ UIScreen mainScreen ] bounds ].size.height == 568 ) {
         self.helpButton.frame = CGRectMake(280.0, 528.0, 40, 40);
} else {
         self.helpButton.frame = CGRectMake(280.0, 440.0, 40, 40);
}

;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 设置 UIButton 的框架但保持图像大小相同,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/20573018/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/20573018/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 设置 UIButton 的框架但保持图像大小相同