TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Best resources for small IPhone Web App?

17 点作者 dxjones大约 16 年前
I am developing a small php-based web app to be accessed both by desktop and iPhone/IPod Touch.<p>I am wondering what tools people use to make IPod Web Apps. I have come across iWebKit (http://http://iwebkit.net/) and WebApp (http://webapp.net.free.fr/), but I don't know if there is anything better or more useful out there. Also, if you have any pointers to detailed tutorials or source code examples, that would be cool.<p>thanks in advance, ...

7 条评论

sergeo大约 16 年前
I would recommend iUI, which is based on the code originally developed by Joe Hewitt - the creator of Firebug.<p>I have developed a pretty advanced iPhone webapp with it (online food diary searching while you type). The only thing was that I had to disable page transitioning emulating sliding screens, as the animation was quite slow and unpleasant.<p>Since then, Apple added support for proprietary CSS extensions providing access to "native" animations, but due to the availability of native SDK, I don't think it is widely used and on a first glance this is not supported in iUI.<p>For reading and reference I would recommend Apple's Developer Connection topic <a href="http://developer.apple.com/safari/library/referencelibrary/GettingStarted/GS_iPhoneWebApp/index.html" rel="nofollow">http://developer.apple.com/safari/library/referencelibrary/G...</a>, which provides several "entry" points to documentation, guides, and samples. Still, for development it makes a lot of sense to save efforts and build on top of an existing library, such as iUI, which provides you the app structure, pre-built JavaScript for iPhone-specific manipulations, and images.<p>I would be careful with iWebKit since it seems to use GPL, which may result in issues with non-open source use.
cyunker大约 16 年前
Stanford iPhone class:<p><a href="http://www.stanford.edu/class/cs193p/cgi-bin/index.php" rel="nofollow">http://www.stanford.edu/class/cs193p/cgi-bin/index.php</a><p>UI library for websites to mimic the iPhone UI:<p><a href="http://code.google.com/p/iui/" rel="nofollow">http://code.google.com/p/iui/</a>
评论 #557969 未加载
auston大约 16 年前
<a href="http://phonegap.pbwiki.com/" rel="nofollow">http://phonegap.pbwiki.com/</a><p>Go down to tips and tricks
seren6ipity大约 16 年前
Check these 31 sample examples. <a href="http://www.appsamuck.com/day1.html" rel="nofollow">http://www.appsamuck.com/day1.html</a>
Zev大约 16 年前
Apple's dev docs. See <a href="http://developer.apple.com/safari/" rel="nofollow">http://developer.apple.com/safari/</a> for the Safari dev center. It covers everything WebKit supports and how to interact with it.
hbien大约 16 年前
For a standard/easy to implement UI, check out iUI: <a href="http://code.google.com/p/iui/" rel="nofollow">http://code.google.com/p/iui/</a>
SwellJoe大约 16 年前
We used iUI for our iPhone (and Android) versions, and it worked very well, and was really easy to apply to an existing web application (an old-fashioned non-AJAXy one at that).