2

我为每种设备设计了不同的偏移量和元素大小。有没有办法为不同的iphone纵向设置不同的值(使用大小类或其他)(它们都是紧凑的|常规的)?

如果不是 - 解决此类任务的最佳方法是什么?

更新

例如,我有徽标,在每个(包括不同的 iphone)平台上,徽标的顶部偏移量是不同的(甚至以点为单位)。

我想避免这样的代码

- (CGFloat)topLogoConstraintAccordingToSize:(CGSize)size {
    CGFloat top = 0;
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad){
        if (size.height > size.width){
            top = 56;
        } else {
            top = 35;
        }
    } else {
        if (IS_IPHONE_4){
            top = 36;
        } else if (IS_IPHONE_5){
            top = 22;
        } else if (IS_IPHONE_6){
            top = 50;
        } else if (IS_IPHONE_6_PLUS){
            top = 56;
        }
    }
    return top;
}

//宇宙中的其他地方

self.logoTopConstraint.constant = [self topLogoConstraintAccordingToSize:size];

此外,我不想为每个平台创建单独的故事板——更糟糕的是。

4

3 回答 3

0

您可以将约束与后面的代码连接起来,并根据需要更改值。

这可能看起来像: - 在 .h 文件中:

@property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraint;

-在 .m 文件中:

if ([platform isEqualToString:@"iPhone3,3"])    constraint.constant=1;//put value you want instead of 1,2 and 3
if ([platform isEqualToString:@"iPhone4,1"])    constraint.constant=1;
if ([platform isEqualToString:@"iPhone5,1"])    constraint.constant=2;
if ([platform isEqualToString:@"iPhone5,2"])    constraint.constant=2;
if ([platform isEqualToString:@"iPhone5,3"])    constraint.constant=2;
if ([platform isEqualToString:@"iPhone5,4"])    constraint.constant=2;
if ([platform isEqualToString:@"iPhone6,1"])    constraint.constant=2;
if ([platform isEqualToString:@"iPhone6,2"])    constraint.constant=2;
if ([platform isEqualToString:@"iPhone7,1"])    constraint.constant=3;
if ([platform isEqualToString:@"iPhone7,2"])    constraint.constant=3;

但是,我不确定你想要达到什么目的。每个元素都以点为单位,应该看起来不错(1x、2x 和 3x)。你能解释一下你想做什么吗?

于 2015-01-15T12:48:01.563 回答
0

如果您以编程方式执行此操作,则可以针对屏幕高度(或宽度)进行测试,例如:

//iphone 5
if UIScreen.main.bounds.size.height == 568.0 {
// your code here
}

iphone屏幕高度如下:

苹果手机 5 = 568.0

iPhone 6/6s/7 = 667.0

iphone 6/7 plus = 736.0

于 2016-12-09T15:35:28.040 回答
-1

将此行粘贴到标题下方的 AppDelegate.m

 #define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:(v) options:NSNumericSearch] != NSOrderedAscending)
 #define IS_WIDESCREEN ( fabs( ( double )[ [ UIScreen mainScreen ] bounds ].size.height - ( double )568 ) < DBL_EPSILON )

并在应用程序中启动了

       UIStoryboard *mainStoryboard = nil;
      if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"6.0"))
   {


    if (IS_WIDESCREEN)
    {

        //4 inch screen
        mainStoryboard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle:nil];


    }
    else
    {

        if(UI_USER_INTERFACE_IDIOM()==UIUserInterfaceIdiomPad)
        {
            mainStoryboard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPad" bundle:nil];

        }
        else
        {
            //3.5 inch screen
            mainStoryboard = [UIStoryboard storyboardWithName:@"MainStoryboard_legacy_IPhone" bundle:nil];
        }
    }
} 
于 2015-01-15T13:07:25.450 回答