comparison StockCharts.xcodeproj/project.pbxproj @ 108:f53d8b9ca92b

Custom style implemented
author Dennis Concepción Martín <dennisconcepcionmartin@gmail.com>
date Sun, 04 Jul 2021 16:40:24 +0100
parents 3e94c6721a6a
children 71b027b75fe6
comparison
equal deleted inserted replaced
107:b0c81b2e624d 108:f53d8b9ca92b
6 objectVersion = 50; 6 objectVersion = 50;
7 objects = { 7 objects = {
8 8
9 /* Begin PBXBuildFile section */ 9 /* Begin PBXBuildFile section */
10 950857AE266BDF62005357BA /* CapsuleChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 950857AD266BDF62005357BA /* CapsuleChartView.swift */; }; 10 950857AE266BDF62005357BA /* CapsuleChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 950857AD266BDF62005357BA /* CapsuleChartView.swift */; };
11 954AA39E269209770006FD14 /* LineChartStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 954AA39D269209770006FD14 /* LineChartStyle.swift */; };
12 954AA3A026920D060006FD14 /* CapsuleChartStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 954AA39F26920D060006FD14 /* CapsuleChartStyle.swift */; };
11 95770B8B263C57B5003FA924 /* StockCharts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 95770B81263C57B5003FA924 /* StockCharts.framework */; }; 13 95770B8B263C57B5003FA924 /* StockCharts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 95770B81263C57B5003FA924 /* StockCharts.framework */; };
12 95770B90263C57B5003FA924 /* StockChartsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95770B8F263C57B5003FA924 /* StockChartsTests.swift */; }; 14 95770B90263C57B5003FA924 /* StockChartsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95770B8F263C57B5003FA924 /* StockChartsTests.swift */; };
13 95770B92263C57B5003FA924 /* StockCharts.h in Headers */ = {isa = PBXBuildFile; fileRef = 95770B84263C57B5003FA924 /* StockCharts.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15 95770B92263C57B5003FA924 /* StockCharts.h in Headers */ = {isa = PBXBuildFile; fileRef = 95770B84263C57B5003FA924 /* StockCharts.h */; settings = {ATTRIBUTES = (Public, ); }; };
14 95770BA0263C590C003FA924 /* LineChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95770B9F263C590C003FA924 /* LineChartView.swift */; }; 16 95770BA0263C590C003FA924 /* LineChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95770B9F263C590C003FA924 /* LineChartView.swift */; };
15 95770BA3263C5934003FA924 /* ChartLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95770BA2263C5934003FA924 /* ChartLabel.swift */; }; 17 95770BA3263C5934003FA924 /* ChartLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95770BA2263C5934003FA924 /* ChartLabel.swift */; };
28 }; 30 };
29 /* End PBXContainerItemProxy section */ 31 /* End PBXContainerItemProxy section */
30 32
31 /* Begin PBXFileReference section */ 33 /* Begin PBXFileReference section */
32 950857AD266BDF62005357BA /* CapsuleChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CapsuleChartView.swift; sourceTree = "<group>"; }; 34 950857AD266BDF62005357BA /* CapsuleChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CapsuleChartView.swift; sourceTree = "<group>"; };
35 954AA39D269209770006FD14 /* LineChartStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LineChartStyle.swift; sourceTree = "<group>"; };
36 954AA39F26920D060006FD14 /* CapsuleChartStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CapsuleChartStyle.swift; sourceTree = "<group>"; };
33 95770B81263C57B5003FA924 /* StockCharts.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = StockCharts.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 37 95770B81263C57B5003FA924 /* StockCharts.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = StockCharts.framework; sourceTree = BUILT_PRODUCTS_DIR; };
34 95770B84263C57B5003FA924 /* StockCharts.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StockCharts.h; sourceTree = "<group>"; }; 38 95770B84263C57B5003FA924 /* StockCharts.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StockCharts.h; sourceTree = "<group>"; };
35 95770B85263C57B5003FA924 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; 39 95770B85263C57B5003FA924 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
36 95770B8A263C57B5003FA924 /* StockChartsTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = StockChartsTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 40 95770B8A263C57B5003FA924 /* StockChartsTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = StockChartsTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
37 95770B8F263C57B5003FA924 /* StockChartsTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StockChartsTests.swift; sourceTree = "<group>"; }; 41 95770B8F263C57B5003FA924 /* StockChartsTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StockChartsTests.swift; sourceTree = "<group>"; };
67 /* Begin PBXGroup section */ 71 /* Begin PBXGroup section */
68 950857AC266BDF48005357BA /* CapsuleChart */ = { 72 950857AC266BDF48005357BA /* CapsuleChart */ = {
69 isa = PBXGroup; 73 isa = PBXGroup;
70 children = ( 74 children = (
71 950857AD266BDF62005357BA /* CapsuleChartView.swift */, 75 950857AD266BDF62005357BA /* CapsuleChartView.swift */,
76 954AA39F26920D060006FD14 /* CapsuleChartStyle.swift */,
72 ); 77 );
73 path = CapsuleChart; 78 path = CapsuleChart;
74 sourceTree = "<group>"; 79 sourceTree = "<group>";
75 }; 80 };
76 95770B77263C57B5003FA924 = { 81 95770B77263C57B5003FA924 = {
132 }; 137 };
133 95770B9E263C58F4003FA924 /* LineChart */ = { 138 95770B9E263C58F4003FA924 /* LineChart */ = {
134 isa = PBXGroup; 139 isa = PBXGroup;
135 children = ( 140 children = (
136 95770B9F263C590C003FA924 /* LineChartView.swift */, 141 95770B9F263C590C003FA924 /* LineChartView.swift */,
142 954AA39D269209770006FD14 /* LineChartStyle.swift */,
137 95770BA1263C5927003FA924 /* Helpers */, 143 95770BA1263C5927003FA924 /* Helpers */,
138 ); 144 );
139 path = LineChart; 145 path = LineChart;
140 sourceTree = "<group>"; 146 sourceTree = "<group>";
141 }; 147 };
259 isa = PBXSourcesBuildPhase; 265 isa = PBXSourcesBuildPhase;
260 buildActionMask = 2147483647; 266 buildActionMask = 2147483647;
261 files = ( 267 files = (
262 95770BA0263C590C003FA924 /* LineChartView.swift in Sources */, 268 95770BA0263C590C003FA924 /* LineChartView.swift in Sources */,
263 95770BA3263C5934003FA924 /* ChartLabel.swift in Sources */, 269 95770BA3263C5934003FA924 /* ChartLabel.swift in Sources */,
270 954AA3A026920D060006FD14 /* CapsuleChartStyle.swift in Sources */,
264 95770BA7263C596E003FA924 /* LinePath.swift in Sources */, 271 95770BA7263C596E003FA924 /* LinePath.swift in Sources */,
265 950857AE266BDF62005357BA /* CapsuleChartView.swift in Sources */, 272 950857AE266BDF62005357BA /* CapsuleChartView.swift in Sources */,
266 95770BA9263C5988003FA924 /* LineView.swift in Sources */, 273 95770BA9263C5988003FA924 /* LineView.swift in Sources */,
267 95770BA5263C594C003FA924 /* IndicatorPoint.swift in Sources */, 274 95770BA5263C594C003FA924 /* IndicatorPoint.swift in Sources */,
275 954AA39E269209770006FD14 /* LineChartStyle.swift in Sources */,
268 ); 276 );
269 runOnlyForDeploymentPostprocessing = 0; 277 runOnlyForDeploymentPostprocessing = 0;
270 }; 278 };
271 95770B86263C57B5003FA924 /* Sources */ = { 279 95770B86263C57B5003FA924 /* Sources */ = {
272 isa = PBXSourcesBuildPhase; 280 isa = PBXSourcesBuildPhase;