This is a follow up question on my first queries regarding retrieving data on plist. Right now i have manage to detect users touches made on my view with random image call o
The plist part is well explained in other answers.
But if you are storing/reading with CGPoint
I would strongly suggest you to use the following very handy methods, CGPointFromString
and NSStringFromCGPoint
see Apple documentation for more information.
Note there are also other utilities to work with graphics structures like CGPointEqualToPoint
, CGRectContainsPoint
, CGRectIntersectsRect
or CGRectContainsRect
... see Apple documentation for more information