Toggle navigation
Toggle navigation
This project
Loading...
Sign in
iOS
/
PNChart
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
kevinzhow
2015-08-10 12:58:04 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f78abd108679217d36dc5d31e084200cecb72a21
f78abd10
1 parent
8091dee6
Fix #228
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
PNChart/PNLineChart.m
Podfile.lock
PNChart/PNLineChart.m
View file @
f78abd1
...
...
@@ -257,7 +257,7 @@
for
(
NSInteger
p
=
_pathPoints
.
count
-
1
;
p
>=
0
;
p
--
)
{
NSArray
*
linePointsArray
=
_endPointsOfPath
[
p
];
for
(
int
i
=
0
;
i
<
linePointsArray
.
count
-
1
;
i
+=
2
)
{
for
(
int
i
=
0
;
i
<
(
int
)
linePointsArray
.
count
-
1
;
i
+=
2
)
{
CGPoint
p1
=
[
linePointsArray
[
i
]
CGPointValue
];
CGPoint
p2
=
[
linePointsArray
[
i
+
1
]
CGPointValue
];
...
...
@@ -290,7 +290,7 @@
for
(
NSInteger
p
=
_pathPoints
.
count
-
1
;
p
>=
0
;
p
--
)
{
NSArray
*
linePointsArray
=
_pathPoints
[
p
];
for
(
int
i
=
0
;
i
<
linePointsArray
.
count
-
1
;
i
+=
1
)
{
for
(
int
i
=
0
;
i
<
(
int
)
linePointsArray
.
count
-
1
;
i
+=
1
)
{
CGPoint
p1
=
[
linePointsArray
[
i
]
CGPointValue
];
CGPoint
p2
=
[
linePointsArray
[
i
+
1
]
CGPointValue
];
...
...
Podfile.lock
View file @
f78abd1
...
...
@@ -10,4 +10,4 @@ SPEC CHECKSUMS:
Expecta: 78b4e8b0c8291fa4524d7f74016b6065c2e391ec
UICountingLabel: 1db4e7d023e1762171eb226d6dff47a7a84f27aa
COCOAPODS: 0.3
7
.2
COCOAPODS: 0.3
8
.2
...
...
Please
register
or
login
to post a comment