我的UIButton的位置在所有模拟器中都有所不同 [英] Position of my UIButton are varying for in all simulator

查看:91
本文介绍了我的UIButton的位置在所有模拟器中都有所不同的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在一个项目下。我在我的viewcontroller底部使用代码创建了一个uibutton(不通过故事板)。但是当我运行我的应用程序时,我的uibutton位于不同的位置。例如在iphone 5,6中模拟器在某个位置。在4s,ipad模拟器我的uibutton是不可见的。我也检查我自己的设备(iphone 6),在那也是我的uibutton无法看到。

I am under one project.In that I created one uibutton at bottom of my viewcontroller using code (Not via storyboard).But when i run my app,my uibutton are placing in differents positions.for example in iphone 5,6 simulator are in some position.In 4s,ipad simulator my uibutton is unvisible.Also i check with my own device(iphone 6) ,in that also my uibutton is not able to see.

需要

我使用以下代码创建&放置我的按钮位置。但它不适合一个位置。

I used below code for creating & placing my button position.but its not fit in one position.

 CGFloat buttonSize = 40;

    UIButton * disButton = [[UIButton alloc] init];
    disButton.backgroundColor = [UIColor redColor];
    UIImage *btnImage = [UIImage imageNamed:@"23"];
    [disButton setImage:btnImage forState:UIControlStateNormal];
    disButton.frame = CGRectMake(150, 523, 40, 40);
    [overlayView addSubview:disButton];
    [disButton addTarget:self action:@selector(dismissPopUpViewController)
        forControlEvents:UIControlEventTouchUpInside];

在我的代码中,我用来在这一行中放置位置:

In my code i use to place position in this line:

disButton.frame = CGRectMake(150, 523, 40, 40);

=> x-position = 150

=> Y-position = 523

请为这个问题提供一些代码解决方案。

Kindly please give some code solution for this problem.

推荐答案

根据您对所提问题的所有评论。您需要为 UIButon 设置约束。使用只有中心x,中心y ,因为这有助于在所有设备中查看您的布局。并且已经有一个问题的解决方案。请参阅以下链接,为 UIButton

As per all comments about your question.You need to set constraint for your UIButon.Use only centre x,centre y because that will helpfull to see your layout in all devices. And there is a already solution for your problem.see these below links for setting auto layout for UIButton

链接1

链接2

Link 3

当然这对你有帮助!

这篇关于我的UIButton的位置在所有模拟器中都有所不同的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆