我在一个项目中。我在我的viewcontroller底部使用代码创建了一个uibutton(不通过故事板)。但是当我运行我的应用程序时,我的uibutton位于不同的位置。例如在iphone 5,6中模拟器在某些位置。在4s,ipad模拟器我的uibutton是不可见的。我也检查我自己的设备(iphone 6),在那也是我的uibutton无法看到。
所需
我使用下面的代码创建&放置我的按钮位置。但它不适合在一个位置。
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];
在我的代码中,我用来在这一行中放置位置:
disButton.frame = CGRectMake(150, 523, 40, 40);
=> x-position = 150
=> Y-position = 523
请为这个问题提供一些代码解决方案。