Skip to content

Commit c12d3cc

Browse files
committed
Delete the dumped content
1 parent 84ee9e2 commit c12d3cc

File tree

3 files changed

+1
-25
lines changed

3 files changed

+1
-25
lines changed

AAChartKit.xcodeproj/project.pbxproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
2707BAB91EF7BA47008357AC /* AATooltip.m in Sources */ = {isa = PBXBuildFile; fileRef = 2707BA911EF7BA47008357AC /* AATooltip.m */; };
4545
2707BABA1EF7BA47008357AC /* AAXAxis.m in Sources */ = {isa = PBXBuildFile; fileRef = 2707BA931EF7BA47008357AC /* AAXAxis.m */; };
4646
2707BABB1EF7BA47008357AC /* AAYAxis.m in Sources */ = {isa = PBXBuildFile; fileRef = 2707BA951EF7BA47008357AC /* AAYAxis.m */; };
47-
2707BABC1EF7BA47008357AC /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 2707BA961EF7BA47008357AC /* LICENSE */; };
4847
64245ACA1EC0DD6D005B8021 /* IMG_1874.JPG in Resources */ = {isa = PBXBuildFile; fileRef = 64245AC91EC0DD6D005B8021 /* IMG_1874.JPG */; };
4948
64245ACC1EC36307005B8021 /* IMG_1875.JPG in Resources */ = {isa = PBXBuildFile; fileRef = 64245ACB1EC36307005B8021 /* IMG_1875.JPG */; };
5049
64245AD01EC36897005B8021 /* IMG_1877.JPG in Resources */ = {isa = PBXBuildFile; fileRef = 64245ACF1EC36897005B8021 /* IMG_1877.JPG */; };
@@ -161,7 +160,6 @@
161160
2707BA931EF7BA47008357AC /* AAXAxis.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AAXAxis.m; sourceTree = "<group>"; };
162161
2707BA941EF7BA47008357AC /* AAYAxis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AAYAxis.h; sourceTree = "<group>"; };
163162
2707BA951EF7BA47008357AC /* AAYAxis.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AAYAxis.m; sourceTree = "<group>"; };
164-
2707BA961EF7BA47008357AC /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
165163
2707BABF1EF8BAF1008357AC /* AAChartKit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AAChartKit.h; sourceTree = "<group>"; };
166164
64245AC91EC0DD6D005B8021 /* IMG_1874.JPG */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = IMG_1874.JPG; sourceTree = "<group>"; };
167165
64245ACB1EC36307005B8021 /* IMG_1875.JPG */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = IMG_1875.JPG; sourceTree = "<group>"; };
@@ -236,7 +234,6 @@
236234
2707BA591EF7BA47008357AC /* AAChartKit.podspec */,
237235
2707BA5A1EF7BA47008357AC /* AAJSFiles */,
238236
2707BA611EF7BA47008357AC /* AAOptionsModel */,
239-
2707BA961EF7BA47008357AC /* LICENSE */,
240237
);
241238
path = AAChartKitLib;
242239
sourceTree = "<group>";
@@ -547,7 +544,6 @@
547544
7131910C1E80B2F400382A09 /* IMG_1871.JPG in Resources */,
548545
64245ADA1EC4BA44005B8021 /* IMG_1882.JPG in Resources */,
549546
64245AD01EC36897005B8021 /* IMG_1877.JPG in Resources */,
550-
2707BABC1EF7BA47008357AC /* LICENSE in Resources */,
551547
2707BAA11EF7BA47008357AC /* AAJQueryLibrary.js in Resources */,
552548
64245AD81EC37495005B8021 /* IMG_1880.JPG in Resources */,
553549
2707BA9B1EF7BA47008357AC /* AAChartKit.podspec in Resources */,

AAChartKit/PrefixHeader.pch

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,3 @@
2020
// You will also need to set the Prefix Header build setting of one or more of your targets to reference this file.
2121

2222
#endif /* PrefixHeader_pch */
23-
///Users/jinyindao/Downloads/图表试炼 2/图表试炼/PrefixHeader.pch
24-
//$(SRCROOT)/图表试炼/PrefixHeader.pch

AAChartKitLib/AAChartKit.podspec

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,6 @@ Pod::Spec.new do |s|
1919
s.source = {:git => 'https://github.com/AAChartModel/AAChartKit.git', :tag => s.version}
2020
s.source_files = 'AAChartKitLib', 'AAChartKitLib/**/*.{h,m}'
2121
s.resource_bundles = { 'AAChartKitLib' => 'AAChartKitLib/AAJSFiles/**' }
22-
pch_AA = <<-EOS
23-
24-
#define AAObject(objectName) [[objectName alloc]init]
25-
26-
#define AAPropStatementAndFuncStatement(propertyModifyWord,className, propertyPointerType, propertyName) \
27-
@property(nonatomic,propertyModifyWord)propertyPointerType propertyName; \
28-
- (className * (^) (propertyPointerType propertyName)) propertyName##Set;
29-
30-
#define AAPropSetFuncImplementation(className, propertyPointerType, propertyName) \
31-
- (className * (^) (propertyPointerType propertyName))propertyName##Set{ \
32-
return ^(propertyPointerType propertyName) { \
33-
self.propertyName = propertyName; \
34-
return self; \
35-
}; \
36-
}
37-
38-
EOS
39-
40-
s.prefix_header_contents = pch_AA
22+
s.prefix_header_contents = '#import "AAGlobalMacro.h"'
4123
s.requires_arc = true
4224
end

0 commit comments

Comments
 (0)