DYFCodeScannerMacros.h 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. //
  2. // DYFCodeScannerMacros.h
  3. //
  4. // Created by dyf on 2018/01/28.
  5. // Copyright © 2018 dyf. All rights reserved.
  6. //
  7. // Permission is hereby granted, free of charge, to any person obtaining a copy
  8. // of this software and associated documentation files (the "Software"), to deal
  9. // in the Software without restriction, including without limitation the rights
  10. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. // copies of the Software, and to permit persons to whom the Software is
  12. // furnished to do so, subject to the following conditions:
  13. //
  14. // The above copyright notice and this permission notice shall be included in
  15. // all copies or substantial portions of the Software.
  16. //
  17. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  20. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  21. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  22. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  23. // THE SOFTWARE.
  24. //
  25. #ifndef DYFCodeScannerMacros_h
  26. #define DYFCodeScannerMacros_h
  27. // 日志输出
  28. #ifdef DEBUG
  29. #define DYFLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__)
  30. #else
  31. #define DYFLog(fmt, ...) {}
  32. #endif
  33. // Resolving block circular reference - __weak (arc)
  34. #ifndef DYFWeakObject
  35. #if __has_feature(objc_arc)
  36. #define DYFWeakObject(o) try {} @finally {} __weak __typeof(o) weak##_##o = o;
  37. #else
  38. #define DYFWeakObject(o) try {} @finally {} __block __typeof(o) weak##_##o = o;
  39. #endif
  40. #endif
  41. // Resolving block circular reference - __strong (arc)
  42. #ifndef DYFStrongObject
  43. #if __has_feature(objc_arc)
  44. #define DYFStrongObject(o) try {} @finally {} __strong __typeof(o) strong##_##o = weak##_##o;
  45. #else
  46. #define DYFStrongObject(o) try {} @finally {} __typeof(o) strong##_##o = weak##_##o;
  47. #endif
  48. #endif
  49. // 创建二维码时,中间头像的宽和高
  50. #define DYFQRCodeMeImageW 100.f
  51. #define DYFQRCodeMeImageH 100.f
  52. // Bundle名称
  53. #define DYFBundleName @"DYFCodeScanner.bundle"
  54. // 字符串追加字符串
  55. #define DYFAppendingString(s, e) [s stringByAppendingString:e]
  56. // 字符串追加路径
  57. #define DYFAppendingPathComponent(s, e) [s stringByAppendingPathComponent:e]
  58. // Bundle文件路径
  59. #define DYFBundleFilePath(name) DYFAppendingPathComponent(DYFBundleName, name)
  60. // 通过图像名称获取图像对象
  61. #define DYFImageNamed(name) [UIImage imageNamed:name]
  62. // 通过图像名称获取Bundle中的图像对象
  63. #define DYFBundleImageNamed(name) [UIImage imageNamed:DYFBundleFilePath(name)]
  64. // 目标对象是否响应方法
  65. #define DYFRespondsToMethod(target, sel) (target && [target respondsToSelector:@selector(sel)])
  66. // 获取应用单例
  67. #define DYFSharedApp UIApplication.sharedApplication
  68. // 获取状态栏高度
  69. #define DYFStatusBarHeight DYFSharedApp.statusBarFrame.size.height
  70. #endif /* DYFCodeScannerMacros_h */