Search Results

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

What are possible/good ways to prototype iPhone applications?

QuickConnectiPhone allows you to create a prototype quickly using HTML, CSS, and JavaScript. You can even use Dashcode to help you do this. Not only do you end up with a prototype but it can be p …
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 …
2
votes

Available iPhone Web Application JavaScript UI Library/Frameworks

QuickConnectiPhone has what you are asking for. There is a custom project type for Dashcode that allows you to quickly create your app. If you then want to run it installed on an iPhone or touch …
0
votes

How do you add a link that will add an event to your iPhone calendar from safari?

Of course it is possible but only if your JavaScript application is installed on the device. Look at http://tetontech.wordpress.com to s …
2
votes

iPhone web applications, templates, frameworks?

QuickConnectiPhone is LGPL so you can use it the way you want. It has a custom Dashcode project that includes the needed files. It is highly modular. It will even let you compile your JavaScript …
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

Minimalist cacheable jQuery/javascript library for iPhone?

You should check out QuickConnectiPhone. It may do what you want. It can be found at https://sourceforge.net/projects/quickconnect/. It also lets you write your app in JavaScript, CSS, and HTML …
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. …
0
votes

How do you get the number keypad to come up in an iPhone webApp?

You can make calls from JavaScript to Objective-C and then display what ever you want. If you want a framework to help you out you could check out QuickConnectiPhone. It is available at https://s …
0
votes

AJAX on the iPhone?

AJAX works very well. If you want a small, simple to use wrapper for AJAX you should check out https://sourceforge.net/projects/quickconnect/. It contains a wrapper called ServerAccessObject foun …
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 …

1 2 next
15 30 50 per page