菜鸟教程小白 发表于 2022-12-12 16:09:23

ios7自动布局按钮调整大小问题


                                            <p><p>我使用的是 xcode 5, Storyboard和自动布局已打开。我的一个 ViewController 的布局有一个带有图像背景的 UIButton。 ViewController 还有 3 个锚定在 View 底部的按钮和上面的一些标签。我将我的 Storyboard布置在 4 英寸视网膜显示器(即:iphone 5+)上,而我遇到的问题是在模拟 3.5 英寸显示器时(即:iphone 4、4s 等)</p>

<p>我已将锚定按钮的高度固定在底部以保持不变。我想要的是当应用程序在 3.5 英寸显示屏 iphone 上运行时,带有图像的 UIButton 将调整为更小(保持所有其他标签和按钮的大小和间距相同)。因此,该 UIButton 的纵横比将保持不变,它只会变小。</p>

<p>我无法在自动布局教程或其他在线教程中找到有关如何设置约束来执行此操作的任何内容(高度/宽度保持成比例)。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我认为您真正想要的如下:
1.Label顶部距离superView 100,底部距离superView 68
2.在 4"显示器中,其尺寸为 200x400,比例为 0.5
3.3.5寸显示器,尺寸为312x624,比例为0.5</p>

<pre><code>- (void)viewDidLoad
{
    ;
    self.view.backgroundColor = ;

    // create search bar
    CGRect frame = CGRectMake(60, 100, 200, 400);
    _label = [ initWithFrame:frame];
    _label.backgroundColor = ;
    ;

    // layout search bar
    _label.translatesAutoresizingMaskIntoConstraints = NO;
    // height
    NSLayoutConstraint *constraint = [NSLayoutConstraint constraintWithItem:_label
                                                                  attribute:NSLayoutAttributeHeight
                                                                  relatedBy:NSLayoutRelationLessThanOrEqual
                                                                     toItem:nil
                                                                  attribute:NSLayoutAttributeNotAnAttribute
                                                               multiplier:0
                                                                   constant:400];
    // width
    ;
    constraint = [NSLayoutConstraint constraintWithItem:_label
                                              attribute:NSLayoutAttributeWidth
                                              relatedBy:NSLayoutRelationEqual
                                                 toItem:_label
                                              attribute:NSLayoutAttributeHeight
                                             multiplier:0.5
                                             constant:0];
    ;

    // vertical
    NSDictionary *views = NSDictionaryOfVariableBindings(_label, self.view);
    NSArray *constraints = -68-|&#34;
                                                                   options:0
                                                                   metrics:nil
                                                                     views:views];
    ;

    // horizontal
    constraint = [NSLayoutConstraint constraintWithItem:_label
                                              attribute:NSLayoutAttributeCenterX
                                              relatedBy:NSLayoutRelationEqual
                                                 toItem:self.view
                                              attribute:NSLayoutAttributeCenterX
                                             multiplier:1
                                             constant:0];
    ;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios7自动布局按钮调整大小问题,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19804062/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19804062/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios7自动布局按钮调整大小问题