3

Are there any resources or guidance out there on how to make iPhone friendly web applications?

In my case specifically, I'd like to use ASP.NET MVC, but since that all runs on the server, I know it'll boil down to just markup/css/javascript considerations.

edit: as I find other resources not mentioned here, I will update the question text :-)

Joel Martinez
  • 46,929
  • 26
  • 130
  • 185
  • did anyone else die of boredom watching that css-tricks video? I couldn't make it past the 2 minute explanation of the existence of browser detection functionality – Andrew Bullock Apr 15 '09 at 20:37

3 Answers3

4
Paul D. Waite
  • 96,640
  • 56
  • 199
  • 270
3

Scot Hanselman had a great presentation at Mix 09. Click here link.

Also look at the Mobile Device Browser File=>LINK. It is open source at codeplex.

"What is the Mobile Device Browser Definition File?

The Mobile Device Browser Definition File contains capability definitions for individual mobile devices and browsers. At run time, ASP.NET uses this .browser file, along with the information in the HTTP request header, to determine what type of device/browser has made the request and what the capabilities of that device are. This information is exposed to the developer through the Request.Browser property and allows them to tailor the presentation of their web page to suit the capabilities of the target device." - Codeplex

Srikar Doddi
  • 15,499
  • 15
  • 65
  • 106
1

The definitive resource is Apple's Safari Dev Center.

Chris Lundie
  • 6,023
  • 2
  • 27
  • 28