45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
//
|
|
// Ifish-Prefix.pch
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/9/27.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#ifndef Ifish_Prefix_pch
|
|
#define Ifish_Prefix_pch
|
|
|
|
#import <Availability.h>
|
|
#ifndef __IPHONE_3_0
|
|
#warning "This project uses features only available in iOS SDK 3.0 and later."
|
|
#endif
|
|
// 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 <UIKit/UIKit.h>
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "Define.h"
|
|
#import "IfishAddGoldRuleType.h"
|
|
#import "Reachability.h"
|
|
#import "Masonry.h"
|
|
#import <Bugly/BuglyLog.h>
|
|
#import "UIButton+button.h"
|
|
#import "CommonMacros.h"
|
|
#import "FuncUserDefault.h"
|
|
#import "CommonUtils.h"
|
|
#define NTES_USE_CLEAR_BAR - (BOOL)useClearBar{return YES;}
|
|
|
|
#define NTES_FORBID_INTERACTIVE_POP - (BOOL)forbidInteractivePop{return YES;}
|
|
|
|
|
|
#endif
|
|
|
|
#endif /* ____Prefix_pch */
|
|
|
|
#define IOS_DEBUG
|
|
#ifdef IOS_DEBUG
|
|
#define NSLog(...) NSLog(__VA_ARGS__)
|
|
#endif
|
|
|