User Lee - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T13:06:41Zhttp://stackoverflow.com/feeds/user/31063http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/221592/geolocation-api-on-the-iphone/347021#3470210Answer by Lee for Geolocation API on the iPhoneLee2008-12-07T00:11:30Z2008-12-07T00:11:30Z<p>It is possible to get the GPS information in JavaScript on the iPhone. The QuickConnectiPhone framework exposes this for you as well as acceleration information. </p>
<p>To get this information you will have to install the application on the device however. This framework will soon be available for Android installed applications as well as Nokia.</p>
<p>You can put your application into the framework for each of these devices, compile, and ship.</p>
<p>QuickConnectiPhone is available at https://sourceforge.net/projects/quickconnect/</p>
<p>and if you contact me I can give you pre-release versions for Android and Nokia.</p>
http://stackoverflow.com/questions/218252/is-there-a-way-to-place-a-pin-into-the-google-maps-iphone-app-using-openurl/347016#3470160Answer by Lee for Is there a way to place a pin into the google maps iphone app using openURL?Lee2008-12-07T00:06:43Z2008-12-07T00:06:43Z<p>Why should your user have to exit your app to see a map. You can embed a Google map in your application easily. You can even drop multiple pins for which you have lat & long information. </p>
<p>In fact, in my opinion your user should never have to leave your application to view a google map.</p>
<p>An example of how to do this is included as an example application at https://sourceforge.net/projects/quickconnect/.</p>
<p>Download the QuickConnectiPhone zip file and you will find it in the Examples directory.</p>
http://stackoverflow.com/questions/30953/is-there-a-multiplatform-framework-for-developing-iphone-android-applications/347013#3470131Answer by Lee for Is there a multiplatform framework for developing iPhone / Android applications?Lee2008-12-07T00:02:05Z2008-12-07T00:02:05Z<p>QuickConnectiPhone lets you write your app in JavaScript and yet it is still installable. An Android version is in unreleased Alpha at this point.</p>
<p>Having both would allow you to create your app in JavaScript, CSS, and HTML, make calls down to either the iPhone or the Android phone for device behaviors such as vibration, GPS locations, etc.</p>
<p>The iPhone version is downloadable from https://sourceforge.net/projects/quickconnect/ and if you contact me I can send you the Android version.</p>
http://stackoverflow.com/questions/228849/best-way-to-share-iphone-and-mac-code-between-projects/347011#3470110Answer by Lee for Best way to share iphone and mac code between projectsLee2008-12-06T23:58:58Z2008-12-06T23:58:58Z<p>You could develop your application in JavaScript, CSS, and HTML. You would use the WebView and UIWebView objects on the Mac and the iPhone respectively. You can do pretty much anything you want in the WebView objects, even make calls down to Objective-C.</p>
<p>The QuickConnectiPhone installer, found here https://sourceforge.net/projects/quickconnect/, installs QuickConnectMac and QuickConnectiPhone templates into Xcode.</p>
<p>This way you can quickly create an application in one environment and then migrate the view to the other. In fact the QuickConnect framework is highly modular.</p>
<p>If you don't want to develop in JavaScript the same modular framework is found on the Objective-C side of the templates installed.</p>
<p>It should make it much easier for you to do what you are attempting.</p>
http://stackoverflow.com/questions/30058/how-can-i-launch-the-google-maps-iphone-application-from-within-my-own-native-app/347007#3470070Answer by Lee for How can I launch the Google Maps iPhone application from within my own native application?Lee2008-12-06T23:53:02Z2008-12-06T23:53:02Z<p>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://sourceforge.net/projects/quickconnect. </p>
<p>It will even supply you with the source code to do all of the embedding.</p>
http://stackoverflow.com/questions/243459/uiwebview-expose-objective-c-to-javascript/347003#3470031Answer by Lee for UIWebView Expose Objective C to JavaScriptLee2008-12-06T23:50:03Z2008-12-06T23:50:03Z<p>There is an example application in the QuickConnectiPhone framework that shows you how to do this.</p>
<p>QuickConnectiPhone also gives you a JavaScript function called 'makeCall'. You pass it a command and an array of parameters and it will pass them to the Objective-C side of your app for handling. You can then make your function call.</p>
<p>You can find it at https://sourceforge.net/projects/quickconnect/</p>
http://stackoverflow.com/questions/272544/whats-the-best-way-to-find-the-users-documents-directory-on-an-iphone/346992#3469922Answer by Lee for What's the best way to find the user's Documents directory on an iPhone?Lee2008-12-06T23:37:23Z2008-12-06T23:37:23Z<p>Here is the code that I use in my framework.</p>
<pre><code> NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
</code></pre>
http://stackoverflow.com/questions/260302/ajax-on-the-iphone/346978#3469780Answer by Lee for AJAX on the iPhone?Lee2008-12-06T23:29:11Z2008-12-06T23:29:11Z<p>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 found in the ServerAccessObject.js file.</p>
<p>The development blog for QuickConnectiPhone is found at <a href="http://tetontech.wordpress.com" rel="nofollow">http://tetontech.wordpress.com</a></p>
http://stackoverflow.com/questions/279475/how-do-you-get-the-number-keypad-to-come-up-in-an-iphone-webapp/346972#3469720Answer by Lee for How do you get the number keypad to come up in an iPhone webApp?Lee2008-12-06T23:26:02Z2008-12-06T23:26:02Z<p>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://sourceforge.net/projects/quickconnect/.</p>
<p>You could also check out <a href="http://tetontech.wordpress.com" rel="nofollow">http://tetontech.wordpress.com</a>. This is the develpment blog for QuickConnect. It has some example code in addition to that which is included in the sourceforge download.</p>
http://stackoverflow.com/questions/286087/best-json-library-to-use-when-developing-an-iphone-application/346955#3469551Answer by Lee for Best JSON library to use when developing an iPhone application?Lee2008-12-06T23:09:43Z2008-12-06T23:09:43Z<p>I have been using the json-framework from on google code. It has worked very well for me.</p>
http://stackoverflow.com/questions/315788/minimalist-cacheable-jquery-javascript-library-for-iphone/346946#3469462Answer by Lee for Minimalist cacheable jQuery/javascript library for iPhone?Lee2008-12-06T23:02:36Z2008-12-06T23:02:36Z<p>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 and yet install it on a device.</p>
<p>There is an API that will allow you to make calls down to the Objective-C layer as well for phone vibration, GPS locations, accelerometer information, and some more. You can even extend this to other native phone behaviors as well.</p>
<p>The development blog for the framework is found at <a href="http://tetontech.wordpress.com" rel="nofollow">http://tetontech.wordpress.com</a></p>
http://stackoverflow.com/questions/323739/native-iphone-database-all-data-on-iphone/346938#3469381Answer by Lee for native iPhone database, all data on iPhoneLee2008-12-06T22:52:58Z2008-12-06T22:52:58Z<p>By all means use SQLite. I find it very easy to use. If you need some sample code check out <a href="http://tetontech.wordpress.com/2008/06/28/iphone-objective-c-sqlite-development/" rel="nofollow">http://tetontech.wordpress.com/2008/06/28/iphone-objective-c-sqlite-development/</a></p>
<p>If you would like an easy to use wrapper check out QuickConnectiPhone. This framework has a wrapper that you could pull out and use.</p>
<p>https://sourceforge.net/projects/quickconnect/</p>
http://stackoverflow.com/questions/317959/loading-data-files-on-iphone/346936#3469360Answer by Lee for Loading Data Files on iPhone?Lee2008-12-06T22:50:28Z2008-12-06T22:50:28Z<p>I would strongly suggest using the existing SQLite functionality that is part of the standard API. </p>
<p>I have found it to be the easiest way to include data during an installation as well as store user generated data.</p>
<p>If you need an example of how to do this check out <a href="http://tetontech.wordpress.com/2008/06/28/iphone-objective-c-sqlite-development/" rel="nofollow">http://tetontech.wordpress.com/2008/06/28/iphone-objective-c-sqlite-development/</a></p>
http://stackoverflow.com/questions/321622/loading-data-files-in-iphone-project/346930#3469300Answer by Lee for Loading data files in iPhone projectLee2008-12-06T22:46:14Z2008-12-06T22:46:14Z<p>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.</p>
<p>It is how I do all of my data storage on the phone now.</p>
http://stackoverflow.com/questions/8756/iphone-web-applications-templates-frameworks/232550#2325502Answer by Lee for iPhone web applications, templates, frameworks?Lee2008-10-24T05:23:50Z2008-10-24T05:23:50Z<p>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, HTML, and CSS into an installable application if you want.</p>
<p><a href="http://sourceforge.net/projects/quickconnect/" rel="nofollow">http://sourceforge.net/projects/quickconnect/</a></p>
<p>For more information you could look at <a href="http://tetontech.wordpress.com" rel="nofollow">http://tetontech.wordpress.com</a></p>
http://stackoverflow.com/questions/168440/how-do-you-add-a-link-that-will-add-an-event-to-your-iphone-calendar-from-safari/232541#2325410Answer by Lee for How do you add a link that will add an event to your iPhone calendar from safari?Lee2008-10-24T05:18:37Z2008-10-24T05:18:37Z<p>Of course it is possible but only if your JavaScript application is installed on the device. Look at <a href="http://tetontech.wordpress.com" rel="nofollow">http://tetontech.wordpress.com</a> to see how to make calls from JavaScript to Objective-C. You can then use this and the Calendar Store Programming Guide from the documentation in Xcode to do what you want.</p>
http://stackoverflow.com/questions/215390/available-iphone-web-application-javascript-ui-library-frameworks/232515#2325152Answer by Lee for Available iPhone Web Application JavaScript UI Library/FrameworksLee2008-10-24T05:05:50Z2008-10-24T05:05:50Z<p>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 you can then drop it into Xcode and compile it up.</p>
<p>It includes wrappers for AJAX and the SQLite database that exists within the Safari browser on the iPhone and touch.</p>
<p>You can get it at</p>
<p><a href="http://sourceforge.net/projects/quickconnect/" rel="nofollow">http://sourceforge.net/projects/quickconnect/</a></p>
<p>More information is available at </p>
<p><a href="http://tetontech.wordpress.com" rel="nofollow">http://tetontech.wordpress.com</a></p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/232474#2324741Answer by Lee for Ruby on iPhoneLee2008-10-24T04:21:13Z2008-10-24T04:21:13Z<p>You don't have to use Objective-C to write iPhone apps. If you use QuickConnectiPhone, <a href="http://sourceforge.net/projects/quickconnect/" rel="nofollow">http://sourceforge.net/projects/quickconnect/</a>, you can write it completely in JavaScript, CSS, and HTML and still have an installable application not a web app.</p>
<p>If you know ruby you are probably working with JavaScript already.</p>
<p>To see how to install it, run it, and other ideas go to tetontech.wordpress.com</p>
http://stackoverflow.com/questions/228247/what-are-possible-good-ways-to-prototype-iphone-applications/232471#2324710Answer by Lee for What are possible/good ways to prototype iPhone applications?Lee2008-10-24T04:16:47Z2008-10-24T04:16:47Z<p>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 partially functional as well.</p>
<p>go to tetontech.wordpress.com to see how to use it. To download it go to <a href="http://sourceforge.net/projects/quickconnect/" rel="nofollow">http://sourceforge.net/projects/quickconnect/</a></p>
http://stackoverflow.com/questions/64420/how-can-i-write-an-iphone-app-entirely-in-javascript-without-making-it-just-a-web/232466#2324663Answer by Lee for How can I write an iPhone app entirely in JavaScript without making it just a web app?Lee2008-10-24T04:12:21Z2008-10-24T04:12:21Z<p>You can create an application without knowing any obj-C. The QuickConnectiPhone framework allows you to do this. Check out <a href="http://tetontech.wordpress.com" rel="nofollow">http://tetontech.wordpress.com</a> for how to use it as well as other ways of doing what you have asked.</p>