#import "TXAdapter.h"
UIView * view=[[UIView alloc]initWithFrame:CGRectMake(0, 0, tRealLength(50), tRealLength(50))];
NSLog(@"真实长度:%f",tRealLength(50));
view.backgroundColor=[UIColor redColor];
[self.view addSubview:view];
NSLog(@"当前设备");
switch (tCurrentType()) {
case TXAdapterPhoneType_iPhone3GS_4_4S:
NSLog(@"TXAdapterPhoneType_iPhone3GS_4_4S");
break;
case TXAdapterPhoneType_iPhone5_5C_5S_5SE:
NSLog(@"TXAdapterPhoneType_iPhone5_5C_5S_5SE");
break;
case TXAdapterPhoneType_iPhone6_6S_7_8:
NSLog(@"TXAdapterPhoneType_iPhone6_6S_7_8");
break;
case TXAdapterPhoneType_iPhone6Plus_6SPlus_7Plus_8Plus:
NSLog(@"TXAdapterPhoneType_iPhone6Plus_6SPlus_7Plus_8Plus");
break;
case TXAdapterPhoneType_iPhoneX:
NSLog(@"TXAdapterPhoneType_iPhoneX");
break;
case TXAdapterPhoneTypeOther:
break;
default:
break;
}
适配机型
最新推荐文章于 2023-04-18 16:49:28 发布