| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // PrefixHeader.pch
- // jitao
- //
- // Created by 罗云飞 on 2017/9/14.
- // Copyright © 2017年 罗云飞. All rights reserved.
- //
- #ifndef PrefixHeader_pch
- #define PrefixHeader_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.
- #endif /* PrefixHeader_pch */
- #ifdef __OBJC__
- #import "NewBasicViewController.h" //父类
- #import "AppDelegate.h"
- #import "NewBasicTabbarController.h"
- #import "NewLoginViewController.h"
- #import "SDAutoLayout.h" //控件约束 适配
- #import "UIView+Toast.h"
- #import "MBProgressHUD.h" //网络请求提示
- #import "MBProgressHUD+NHAdd.h"
- #import "UIImageView+WebCache.h" //网络图片
- #import "JSONModel.h" //Model层
- #import "MJRefresh.h" //上拉下拉刷新控件
- #import "MacroFile.h" //常用宏
- #import "NetworkRequestManager.h" //网络请求封装类
- #import "NewControlPackage.h" //常用控件封装
- #import "NSString+PJR.h" //方法封装集合类
- #import "NewUtils.h" //单例工具类
- #import "UserHelper.h" //用户工具类
- #import "NewSafeObject.h" //字典 数组 addObject 简单封装
- #import "NewUIViewFrmae.h" //UIView Frame 简单封装
- #import "NewUIScrollViewOffset.h" //UIScrollView contentOffset/contentSize 简单封装
- #import "ColorUtils.h" //颜色color
- #import "EaseUI.h"
- #import "SBJson.h"
- #import "OpenUDID.h"
- #endif
|