48 lines
1.0 KiB
Plaintext
48 lines
1.0 KiB
Plaintext
//
|
|
// GIGA.pch
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/8/13.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#ifndef GIGA_pch
|
|
#define GIGA_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.
|
|
#ifdef __OBJC__
|
|
|
|
#import "AFNetworking.h"
|
|
#import <JSONModel/JSONModel.h>
|
|
#import <UMCommon/UMCommon.h>
|
|
#import <UMAnalytics/MobClick.h>
|
|
#import "WXApiObject.h"
|
|
|
|
#endif
|
|
|
|
#import "GiGaUserDefault.h"
|
|
|
|
#import "GIGA.h"
|
|
//#import "AFNetworking.h"
|
|
//#import <JSONModel/JSONModel.h>
|
|
|
|
#import "UIView+Toast.h"
|
|
#import "JXTAlertManagerHeader.h"
|
|
#import "Masonry.h"
|
|
#import "GiGaHelper.h"
|
|
#import "MobClickList.h"
|
|
#import "TTTAttributedLabel.h"
|
|
#import "GiGaUserManager.h"
|
|
#import "GiGaUser.h"
|
|
#import "ApiRequestConfig.h"
|
|
|
|
|
|
#ifdef DEBUG
|
|
#define GILog(fmt,...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__)
|
|
#else
|
|
#define GILog(...)
|
|
#endif
|
|
|
|
#endif /* GIGA_pch */
|