Search Results

1
vote

Ruby on iPhone

You don't have to use Objective-C to write iPhone apps. If you use QuickConnectiPhone, http://sourceforge.net/projects/quickc …
0
votes

Loading data files in iPhone project

Have you considered putting the data in an SQLite database instead of a flat file? I find that the API is very easy to use on the iPhone. It is how I do all of my data storage on the phone …
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

native iPhone database, all data on iPhone

By all means use SQLite. I find it very easy to use. If you need some sample code check out …
2
votes

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 …