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
Kevin
2014-08-27 16:19:53 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
1d60a1a9f3b45a7fbf9e20e30e27ac06fdefcabf
1d60a1a9
2 parents
63b0cf66
5f924f3e
Merge pull request #99 from michaelzischka/master
fixed some value conversion issues
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
PNChart/PNLineChart.m
PNChart/PNLineChart.m
View file @
1d60a1a
...
...
@@ -139,7 +139,7 @@
UITouch
*
touch
=
[
touches
anyObject
];
CGPoint
touchPoint
=
[
touch
locationInView
:
self
];
for
(
int
p
=
_pathPoints
.
count
-
1
;
p
>=
0
;
p
--
)
{
for
(
NSInteger
p
=
_pathPoints
.
count
-
1
;
p
>=
0
;
p
--
)
{
NSArray
*
linePointsArray
=
_pathPoints
[
p
];
for
(
int
i
=
0
;
i
<
linePointsArray
.
count
-
1
;
i
+=
1
)
{
...
...
@@ -172,7 +172,7 @@
UITouch
*
touch
=
[
touches
anyObject
];
CGPoint
touchPoint
=
[
touch
locationInView
:
self
];
for
(
int
p
=
_pathPoints
.
count
-
1
;
p
>=
0
;
p
--
)
{
for
(
NSInteger
p
=
_pathPoints
.
count
-
1
;
p
>=
0
;
p
--
)
{
NSArray
*
linePointsArray
=
_pathPoints
[
p
];
for
(
int
i
=
0
;
i
<
linePointsArray
.
count
-
1
;
i
+=
1
)
{
...
...
Please
register
or
login
to post a comment