Xcode 代码片段

TXAdapter适配

2019-07-17  本文已影响0人  _YN

如果您在阅读我的文章时有疑问 , 请点击这里
导入头文件

#import "TXAdapter.h"

用一个View举例

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;
    }
上一篇 下一篇

猜你喜欢

热点阅读