开发者

How to build an Ipad web app like GMAIL for the iPad

I'm interested开发者_如何学运维 in building am iPad web app like The GMAIL iPad web app. What is the best way to build it? What is the best framework? Jqtouch, webkit, etc.

Thanks


jQTouch is a stable open source framework developed/designed by some of the same guys that are now working on Sencha Touch, and it has a fairly robust community and extensibility support.

http://jqtouch.com/


If you are using JQuery as your JS development library then JQuery Mobile is the most "Official" mobile framework for it and is currently in the make, as of writing this a Beta release is being cooked, I would certainly go for it since JQuery's people are behind it for continuous development and support.


Well if its just a web app you can create a page with frames. The're not adjustable but other then that they've been working the same for me. I have a website that is basically frames and it looks the same on the iPad as in a browser. The gmail could be a two frame app. For example:

<html>
<head>
<title>Sheduler</title>
</head>
<frameset rows="40,*"
    marginheight="0" 
    frameborder="5" framespacing="5">
   <frame name="top" scrolling="no" noresize target="contents" src="/cgi-bin/cgi/ngfop/other2.pl?htmlname=top2.htm&name=Students.xml">
  <frameset cols="30%,*,*">
    <frame name="left" target="main" src="/cgi-bin/cgi/ngfop/other2.pl?htmlname=left01frame.htm&name=blank.xml">
    <frame name="middle" src="/cgi-bin/cgi/ngfop/other2.pl?htmlname=blank.htm">
    <frame name="right"  src="/cgi-bin/cgi/ngfop/other2.pl?htmlname=editschframe.htm&name=blank.xml">
  </frameset>
  <noframes>
  <body>
  <p>This page uses frames, but your browser doesn't support them.</p>
  </body>
  </noframes>
</frameset>
</html>


And here is a list of 18 other mobile frameworks with varying levels of complexity and usefulness. (I couldn't use 2 links in a single post)

http://iphoneized.com/2009/11/18-mobile-frameworks-development-tools-creating-iphone-apps/


There are many frameworks now a days.

I personally used jquerymobile & it looks very promising. I recommend using jquerymobile over others for now as they are releasing new & interesting features on regular bases.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜