NIMKitDependency.h 994 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // NIMKitDependency.h
  3. // NIMKit
  4. //
  5. // Created by chris on 2017/5/3.
  6. // Copyright © 2017年 NetEase. All rights reserved.
  7. //
  8. #ifndef NIMKitDependency_h
  9. #define NIMKitDependency_h
  10. #if __has_include(<M80AttributedLabel/M80AttributedLabel.h>)
  11. #import <M80AttributedLabel/M80AttributedLabel.h>
  12. #else
  13. #import "M80AttributedLabel.h"
  14. #endif
  15. #if __has_include(<SDWebImageCompat/SDWebImageCompat.h>)
  16. #import <SDWebImageCompat/SDWebImageCompat.h>
  17. #else
  18. #import "SDWebImageCompat.h"
  19. #endif
  20. #if __has_include(<SDWebImage/SDWebImage.h>)
  21. #import <SDWebImage/SDWebImage.h>
  22. #else
  23. #import "SDWebImageManager.h"
  24. #import "UIView+WebCacheOperation.h"
  25. #import "UIView+WebCache.h"
  26. #endif
  27. #if __has_include(<Toast/Toast.h>)
  28. #import <Toast/Toast.h>
  29. #else
  30. #import "UIView+Toast.h"
  31. #endif
  32. #if __has_include(<TZImagePickerController/TZImagePickerController.h>)
  33. #import <TZImagePickerController/TZImagePickerController.h>
  34. #else
  35. #import "TZImagePickerController.h"
  36. #endif
  37. #endif /* NIMKitDependency_h */