Search code examples
objective-cxcodegraphing

Bar Chart in xcode


Possible Duplicate:
Objective-C Charting Framework

Does anyone know how to draw graphs and bar charts in xcode? Is it also possible to use data from an sqlite database to create these graphs? Also can these be autoupdated when the database is changed.

Thank you for your help.


Solution

  • Those are 3 separate questions.

    1. graphs and charts: try Google Charts API
    2. Yes, it is possible if you write the code to fetch the data and pass it to the graphing api.
    3. Yes, they can if you write the right code to integrate the db changes to your view controllers.