views:

46

answers:

2

Is there a CSS library which mimics the iPhone grouped UITableView?

I want to build a nice looking table which looks exactly like the grouped UITableView. As there are multiple text styles within the each line of text, and I don't need any interactivity except scrolling, it seems it would be easier to build with HTML and display it in a UIWebView. Is there a css library which matches this need?

+1  A: 

Closest I found was this: http://code.google.com/p/iphone-universal/ .

However, with very basic CSS knowledge, maybe paired with basic Photoshop (or other editor) skills you should be able to make something that looks pretty much like the iPhone UI. It's fairly simple.

Arve Systad
+1  A: 

If you're willing to use jQuery instead of CSS, jqTouch is a neat way to get iPhone look-and-feel on a webpage:

http://jqtouch.com/

Dan M