PrefixHeader.pch 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // PrefixHeader.pch
  3. // jitao
  4. //
  5. // Created by 罗云飞 on 2017/9/14.
  6. // Copyright © 2017年 罗云飞. All rights reserved.
  7. //
  8. #ifndef PrefixHeader_pch
  9. #define PrefixHeader_pch
  10. // Include any system framework and library headers here that should be included in all compilation units.
  11. // You will also need to set the Prefix Header build setting of one or more of your targets to reference this file.
  12. #endif /* PrefixHeader_pch */
  13. #ifdef __OBJC__
  14. #import "NewBasicViewController.h" //父类
  15. #import "AppDelegate.h"
  16. #import "NewBasicTabbarController.h"
  17. #import "NewLoginViewController.h"
  18. #import "SDAutoLayout.h" //控件约束 适配
  19. #import "UIView+Toast.h"
  20. #import "MBProgressHUD.h" //网络请求提示
  21. #import "MBProgressHUD+NHAdd.h"
  22. #import "UIImageView+WebCache.h" //网络图片
  23. #import "JSONModel.h" //Model层
  24. #import "MJRefresh.h" //上拉下拉刷新控件
  25. #import "MacroFile.h" //常用宏
  26. #import "NetworkRequestManager.h" //网络请求封装类
  27. #import "NewControlPackage.h" //常用控件封装
  28. #import "NSString+PJR.h" //方法封装集合类
  29. #import "NewUtils.h" //单例工具类
  30. #import "UserHelper.h" //用户工具类
  31. #import "NewSafeObject.h" //字典 数组 addObject 简单封装
  32. #import "NewUIViewFrmae.h" //UIView Frame 简单封装
  33. #import "NewUIScrollViewOffset.h" //UIScrollView contentOffset/contentSize 简单封装
  34. #import "ColorUtils.h" //颜色color
  35. #import "EaseUI.h"
  36. #import "SBJson.h"
  37. #import "OpenUDID.h"
  38. #endif