3
votes
How can I write an iPhone app entirely in JavaScript without making it just a web app?
You can create an application without knowing any obj-C. The QuickConnectiPhone framework allows you to do this. Check out http://tetontech …
0
votes
Loading Data Files on iPhone?
I would strongly suggest using the existing SQLite functionality that is part of the standard API.
I have found it to be the easiest way to include data during an installation as well as s …
1
vote
Best JSON library to use when developing an iPhone application?
I have been using the json-framework from on google code. It has worked very well for me.
…
1
vote
What’s the best way to find the user’s Documents directory on an iPhone?
Here is the code that I use in my framework.
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [pa …
1
vote
UIWebView Expose Objective C to JavaScript
There is an example application in the QuickConnectiPhone framework that shows you how to do this.
QuickConnectiPhone also gives you a JavaScript function called 'makeCall'. You pass it a …
0
votes
How can I launch the Google Maps iPhone application from within my own native application?
If you need more flexabilty than the Google URL format gives you or you would like to embed a map in your application instead of launching the map app there is an example found at
https://sourcefo …
