1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // HealthPot.pch
- // HealthPot
- //
- // Created by new on 2019/7/9.
- // Copyright © 2018年 make. All rights reserved.
- //
- #ifndef HealthPot_pch
- #define HealthPot_pch
- // Include any system framework and library headers here that should be included in all compilation units.
- // You will also need to set the Prefix Header build setting of one or more of your targets to reference this file.
- #ifdef __OBJC__
- #define px750Width(a) a/750.f*SCREEN_WIDTH
- #define px1334Hight(a) a/1334.f*SCREEN_HEIGHT
- #define LCSTR(str) NSLocalizedString(@(str), nil)
- #define LCCSTR(cstr) NSLocalizedString([NSString stringWithUTF8String:(cstr)], nil)
- #import "Masonry.h"
- #import <SVProgressHUD/SVProgressHUD.h>
- #import "RDSConstant.h"
- #import "RDSHudShower.h"
- #import "RDSConfig.h"
- //#import "TheAlertCtrl.h"
- #import "NSArray+Safe.h"
- #import "UIView+frame.h"
- #import "UIView+RDSClip.h"
- #import "RDSDataManager.h"
- #import "RDSDemoApiHelper.h"
- #import <MJExtension.h>
- //#import "LocalizedUtils.h"
- #import "RDSTools.h"
- #import "TheAlertCtrl.h"
- #import "NSString+convert.h"
- #import "UIFont+Temperature.h"
- #import "UIColor+Temperature.h"
- //SDK
- //#import "DemoCommand.h"
- #endif
- #endif
|