tags:

views:

63

answers:

2

Hello,
in my app I have 49 points with x,y and I wnat to display them on the screen. I've seen a lot of library that can help me (core plot, s7graphview, etc.). But since I'm doing very basic stuff (just draw points), what is the simplest way do to that ?

Thanks !

A: 

Its basic core graphics. Plenty of examples on the developer.apple.com site or just google for Core Graphics iPhone Tutorial.

Andiih
A: 

You could use this Quartz2d method to draw a small circle:

CGContextFillEllipseInRect
David Relihan