| 123456789101112131415161718192021222324252627282930 |
- //
- // CommonMacro.h
- // TCLVBIMDemo
- //
- // Created by annidyfeng on 16/7/29.
- // Copyright © 2016年 tencent. All rights reserved.
- //
- #ifndef CommonMacro_h
- #define CommonMacro_h
- //主窗口的宽、高
- #define kMainScreenWidth MainScreenWidth()
- #define kMainScreenHeight MainScreenHeight()
- #define Localized(Str) NSLocalizedString(Str, Str)
- //static __inline__ CGFloat MainScreenWidth()
- //{
- // return UIInterfaceOrientationIsPortrait([UIApplication sharedApplication].statusBarOrientation) ? [UIScreen mainScreen].bounds.size.width : [UIScreen mainScreen].bounds.size.height;
- //}
- //
- //static __inline__ CGFloat MainScreenHeight()
- //{
- // return UIInterfaceOrientationIsPortrait([UIApplication sharedApplication].statusBarOrientation) ? [UIScreen mainScreen].bounds.size.height : [UIScreen mainScreen].bounds.size.width;
- //}
- #endif /* CommonMacro_h */
|