-
Notifications
You must be signed in to change notification settings - Fork 351
Expand file tree
/
Copy pathESJsonFormat-Prefix.pch
More file actions
42 lines (30 loc) · 971 Bytes
/
ESJsonFormat-Prefix.pch
File metadata and controls
42 lines (30 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// ESJsonFormat-Prefix.pch
// ESJsonFormat
//
// Created by 尹桥印 on 15/6/28.
// Copyright (c) 2015年 EnjoySR. All rights reserved.
//
#ifndef ESJsonFormat_ESJsonFormat_Prefix_pch
#define ESJsonFormat_ESJsonFormat_Prefix_pch
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#import <Cocoa/Cocoa.h>
#import "NSString+ESExtension.h"
#endif
#if 0
#define __DEBUG__
#endif
#ifdef __DEBUG__
#define NSLog(...) NSLog(__VA_ARGS__)
#else
#define NSLog(...) do{} while(0)
#endif
#define ESFormatResultNotification @"ESFormatResultNotification"
#endif
/**
* 调试请在Scheme中配置, Excutable Xcode
*/
#warning 不能用的, 在终端跑一下下面的命令, 把Xcode的UUID添加到插件中去 \
\
find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist -maxdepth 3 | xargs -I{} defaults write {} DVTPlugInCompatibilityUUIDs -array-add `defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID`