Skip to content

Latest commit

 

History

History
90 lines (64 loc) · 3.41 KB

iPhone web development.md

File metadata and controls

90 lines (64 loc) · 3.41 KB

iPhone Web Development

NOTE: replace on with live in older JQuery

// Disable iOS Safari links: http://stackoverflow.com/questions/2898740/iphone-safari-web-app-opens-links-in-new-window $(document).ready(function(){ if (("standalone" in window.navigator) && window.navigator.standalone) { // For iOS Apps $('a').on('click', function(e){ e.preventDefault(); var new_location = $(this).attr('href'); if (new_location != undefined && new_location.substr(0, 1) != '#' && $(this).attr('data-method') == undefined){ window.location = new_location; } }); } });

Icons & Splash


Objective-C

http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/

Cocoa

http://developer.apple.com/referencelibrary/GettingStarted/GS_Cocoa/ http://developer.apple.com/reference/Cocoa/

iPhone API Reference

http://www.cocoadev.com/index.pl?UIKit http://iphonedevdocs.com/forum/archive/index.php/f-3.html http://ericasadun.com/iPhoneDocs/hierarchy.html http://www.lucasnewman.com/iphone/

Hello World example

http://iphone.fiveforty.net/wiki/index.php/UIKit_Hello_World

More Examples

http://phonedev.tumblr.com

Icons

http://blog.jotlet.net/?p=47

Fonts

  • American Typewriter + Condensed
  • Arial
  • Arial Rounded MT Bold
  • Courier New
  • Georgia
  • Helvetica
  • Marker Felt
  • Times New Roman
  • Trebuchet MS
  • Verdana
  • Zapfino

http://daringfireball.net/misc/2007/07/iphone-osx-fonts