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
Michael Zischka
2014-08-26 08:51:03 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5f924f3ed60360715ccf822c286bbfa315fffa1d
5f924f3e
1 parent
bc4d7da4
fixed some value conversion issues
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
PNChart/PNLineChart.m
PNChart/PNLineChart.m
View file @
5f924f3
...
...
@@ -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