How to Get Started with iPhone Dev

Wdd Logo.
May 05, 2009
The iPhone is a fantastic phenomenon. It's a communications device, a multimedia platform and much more all rolled into one single tool. Everyone wants in on this device. The Apple store has just passed the one billionth application download (I alone account for 3% of that...) and there is a wide array of applications from the amazingly useful to the bizarrely redundant. With millions of iPhones out there, it makes sense to have your content, or application available on that platform, but how do you go about doing this? Where do you go to get started? And what are the steps you need to take to get there? This article is an introduction to the various ways of getting content and applications onto the iPhone. It is by no means a full guide, but hopes to point you in the right direction and give you an overview of what is involved in the process.

Immersion

The first step in writing for the iPhone is understanding how things really work on the iPhone. I think it is virtually impossible to develop for the iPhone without being a solid user for a while. The iPhone has a certain way of doing things and if your content does not adhere to that it will stick out like a sore thumb. It is very different to what happens on a desktop. The only means of interacting with content on the iPhone is your fingers. This dictates a lot of the way the interface works. The other major differences are that the screen is small, only one application runs at a time and there is very little opportunity to provide user help. The iPhone uses animation extensively to provide a fluid, responsive interface that feels almost physical (as if the screen's contents are really moving off, jumping or collapsing). You really need to get a feel for this to be able to create something that lives comfortably on the iPhone. You could potentially use the iPhone simulator on a Mac instead of an actual iPhone or iPod Touch, but... that doesn't really do it. The iPhone has a set of accelerometers that can sense the orientation and movement of the device. You really need to hold it and feel it. Apple provides a wealth of information on its iPhone developer site:
http://developer.apple.com/iphone/ There are introductory videos, documents and sample code. Besides all the introductory material, a great document to start with is the iPhone user interface guidelines. They can be found here:
http://developer.apple.com/iphone/library/documentation/UserExperience/Conceptual/MobileHIG/MobileHIG.pdf
I highly recommend starting out with this document. It has examples and sets you out on the voyage. Familiarize yourself with the way things are done on the iPhone and the arsenal of controls and functionality at your disposal.

Planning

I'm not going to go deeply into this. Planning on the iPhone is like planning for any other platform. You need to be clear about what you want to achieve and explore what functionality you want to expose with your project. Strive for a solution that is clear, understandable, visually pleasing and of course... cool.

Visualizing

Once you know the game plan the search starts for the design. With the unique iPhone look, it is essential that you use that look in visualizing your project's interface. Recreating the iPhone interface for wireframe or sketch purposes is a lot of work. Fortunately people have already put in that effort and it is available for you to use. These are collections of graphical widgets in various formats that can be used to assemble what looks like iPhone screens. You can use them to put together sketches and wireframes for your projects. Here are a few:

Yahoo Design Stencil Kit

Part of the Yahoo UI Kit. This is an excellent resource for any kind of UI design visualization. The Yahoo! Design Stencil Kit version 1.0 is available for OmniGraffle, Visio (XML), Adobe Illustrator (PDF and SVG), and Adobe Photoshop (PNG). It is a set of graphics in different formats to be used in various applications and help you put together UI sketches. Download here: http://developer.yahoo.com/ypatterns/wireframes/

Geoff Teehan’s iPhone GUI

A Photoshop file that has a fairly comprehensive library of assets, some editable Download here: http://teehanlax.com/downloads/iPhone_GUI.psd.zip

Sketch paper for the mobile designer

A PDF or Photoshop based 'sketchepad' for sketching out iPhone interfaces. It can be downloaded here:
http://labs.boulevart.be/index.php/2008/06/05/sketch-paper-for-the-mobile-designer/
And of course, there are several others floating around. OK. So now you have an idea or some content, you thought of the game plan, you sketched out an interface that would look at home on the iPhone. What's next? Well...there are several approaches you can take to get your project on the iPhone:

Do Nothing

The iPhone has a remarkable web browser for a mobile device: Safari. It has a few tricks up its sleeves and does its best to present any website in a readable fashion. So... if you have a website that is up and running, you might get away with doing absolutely nothing.

Safari is able to present nearly any website in a readable way. The user can double click on any section of the web page and Safari will zoom in to a readable scale and present that page. Things that are to be avoided for iPhone compliance are:
  • Flash. There is currently no support for Flash on the iPhone
  • Segments of the site that rely on mouse hovering. Since there is no mouse, or cursor, the hover event is never triggered and therefore any behavior you designed will never show on the iPhone.
  • Wide, rigid layouts with no columns. iPhone does not handle those well.
So if your site/app works well with Safari on the iPhone with no changes, that is your path of least resistance.

Do a little

The next step up is to keep your site, but make a few adjustments, so that viewing it on an iPhone will be a better experience for your visitors. Here some some simple tips and trick that will make your site work well for an iPhone visitor.
  • Use columns. This is quite basic but it makes a huge difference. Users will double click on a column and will be able to zoom in and read your content easily.
  • Organize complementary information so that it is placed in the same column. That way the user can read a whole chunk of related material by scrolling, without having to hop around.
  • Don't use absolute font sizes. Use percentages instead.
  • Use the metatag. This is the most fundamental concept in any iPhone web work. It defines the size that the page should be resized to before scaling it down to fit the iPhone. it takes the format of
  • Read Apple's guide for iPhone web sites over here: http://developer.apple.com/safari/mobile.php

Develop a site for the iPhone

Now you're talking! You are going to develop a website specifically for the iPhone. You need to learn what is possible from here http://developer.apple.com/safari/mobile.php and start putting it all together. The idea is to build a web app that lives comfortably on the iPhone, preserves the visual style and behaviors the iPhone users are used to and takes advantage of the special features of the platform such as gestures, orientation changes, etc. You don't have to start from scratch. There are plenty of great resources that provide a good starting point or framework to build your iPhone:
  • iUI: Allows you to create navigational menus and iPhone interfaces, with a minimal knowledge of JavaScript. It provides an ability to handle the phone orientation change and an experience that is more iPhone like. iUI is a library of JavaScript and CSS that is intended to mimic the look and feel of the iPhone on web pages. http://code.google.com/p/iui/
  • Webkit: Safari is a webkit based browser. Webkit adds a whole lot of functionality that takes advantage of unique iPhone features (database accessible to your app, understanding iPhone gestures, orientation sensing and much more) check it out here: http://www.westciv.com/iphonetests/
  • Aptana Studio: An IDE that includes an iPhone site project starter. It contains management of phone orientation and other goodies. It will even preview your site in a mock iPhone screen: http://www.aptana.com
  • jQuery plug-in for the iPhone: jQuery is a lightweight, surprisingly powerful JavaScript library. Jonathan Neal created a jQuery plugin for the iPhone which helps you put together an iPhone centric web app. http://plugins.jquery.com/project/iphone


Using the Aptana Studio iPhone template / Code view


Aptana Studio showing iPhone preview
Various sites developed specifically for the iPhone

Various sites developed specifically for the iPhone
The following options involve the Apple Developer tools. To access them you need to be a registered Apple developer. The suite of tools is collectively called Xcode. Xcode includes a number of tools, each tackles a different part of the puzzle: Signing up is done here:
http://developer.apple.com/
  • Xcode. This is the central piece of the Xcode suite. It is where SDK projects are created, managed, edited and run. It's a very powerful IDE that has many features to help you put together the application including code completion, refactoring and links to relevant documentation.
  • Interface Builder. Is a powerful graphical editor in which you interactively create the user interface for your SDK iPhone application.
  • iPhone Simulator. This is used by Xcode and Dashcode to run applications on the Mac desktop for testing purposes. It presents a running iPhone in a desktop window. A very convenient and time saving tool.
  • Instruments is a program that helps you to debug, profile, and trace your program. This is how SDK programs are debugged and finely tuned for performance.
  • Dashcode. Not really part of the Xcode suite but it's bundled with it. Dashcode is a development environment that was first created for developing dashboard widgets (which are actually little web applications). In its current incarnation, it can build widgets as well as iPhone web sites. Dashcode outputs web pages, so you will be making use of your HTML, JavaScript CSS knowledge.

The Dashcode Route

Dashcode is a strange beast. It's part of the Xcode suite, but does not really interact with the other components (except for the iPhone simulator it uses to run projects you develop with it). Dashcode is an IDE geared to building iPhone web apps. It has a number of templates you can use as a starting point for your app (Navigation based application, Tab bar based application etc) and take it from there. There is a control library that you can use, dragging out controls onto your interface and then assigning properties and logic. Dashcode saves its projects as a Dashcode project file, and when you are done you export the project as an html/javascript/css site for deployment. It isn't built for very elaborate complicated apps that have a lot of backend code, but if you have a straightforward self contained idea. There is nothing faster than Dashcode for putting it together. The user guide to Dashcode can be found here
The Dashcode IDE, providing a library of controls a layout area and code editing section

Previewing a site developed in Dashcode on the iPhone simulator
Using all that webkit can offer along with one of the frameworks, or building your site using DashCode allows you to create something very close to a native iPhone app that is sensitive to orientation changes, uses animation for transitions and displays the iPhone UI widgets. What you will be missing is this:
  • No access to features like camera, recording or location services
  • Cannot get rid of the browser toolbar on the bottom
  • Your site is shown in a browser and not as a separate app
  • And the biggest drawback: it cannot be sold at the app store, so if you are planning on making money off your content it will need to be handled by you, rather than using the app store model and getting the exposure.

Using the SDK

To gain the full leverage of the app store and to take full advantage of all the iPhone has to offer, you need to use the iPhone SDK. Creating an iPhone SDK app exposes the full potential of the iPhone. The SDK provides an incredibly rich collection of frameworks each responsible for a particular area of functionality. The big picture is like this: You create an application in Xcode, build the user interface in Interface Builder and run it in the iPhone Simulator. The main framework that you most likely will become most familiar with is Cocoa Touch. Among other things it contains the UIKit framework and the address book UI framework. It also supports windowing, events and user-interface management plus much more. There is a lot of heavy lifting to be done here and a lot of information to be absorbed in order to take advantage of the richness the iPhone provides. Fortunately there is tons of information, documentation, sample code and introduction videos available here: http://developer.apple.com/iphone/ The main concepts that you need to wrap your head around are:
  • The basic flow Xcode uses for producing an app
  • The frameworks available, what is responsible for which type of functionality
  • Objective-c. The language used to program in Xcode

Xcode provides many project templates that you can use as a starting point for the major categories of applications: Navigation based application, Tab Bar Application etc. The first step to starting with SDK development is to download the SDK and install it. The SDK is a hefty 1GB download and requires registration as an Apple developer. The second step is to figure out what's going on and get your bearings within this environment. The introductory videos are a good place to start and get oriented. You can find them here:
http://developer.apple.com/iphone/index.action Xcode. The nerve center of the IDE development flow


Interface Builder. The tool you use to visually lay out the iPhone app interface

SDK Hybrids

This last type is basically an SDK app with a twist. Sections of the app are actually Safari browser panes that are showing web pages. This splits the development into the section that will be written using Xcode and objective c and the section that will be fetching information from the web and and presenting it in a browser view. Basically Xcode will be used to create the application running on the iPhone and Dashcode will be used to build the web sections of the app. Your application is the combination of these two technologies cooperating. A good reference for this type of app can be found in the and in this book: user interface guidelines

Summary

To sum all this up, let's look at the most important elements needed to create content for the iPhone:
  • Immersion: Get an iPhone or iPod Touch and experience the user interface. Getting to know it is the only way of creating content that fits.
  • Planning: Nothing much to add here. Make sure your content has a purpose and you know what it is.
  • Do Nothing: Chances are your site works on the iPhone as is. You might not have to do much.
  • Do a little: You can take just a few steps to make your site play nice on the iPhone. A few changes can make a huge difference and make your site feel at home.
  • Develop an iPhone site: Create a site that is optimized for the iPhone, making it look like a native iPhone app as much as possible.
  • Create a site with Dashcode: Create sites specifically for the iPhone using the convenient and powerful Dashcode IDE.
  • Full blown SDK application:Use the Xcode suite to build native iPhone applications that can be submitted and sold on the Apple App Store.
  • An SDK Hybrid application: An iPhone application can be built as a combination of a native app and a web app, where the SDK app hosts web views presenting data from the web. This allow you to use your abilities from both environments.

Resources


Written exclusively for WDD by Etan Rozin. He's a user interface designer and runs his own website at: www.rozin.com Which tools do you use for iPhone development? Please share your comments with us...

WDD Staff

WDD staff are proud to be able to bring you this daily blog about web design and development. If there's something you think we should be talking about let us know @DesignerDepot.

Read Next

LimeWire Developer APIs Herald a New Era of AI Integration

Generative AI is a fascinating technology. Far from the design killer some people feared, it is an empowering and…

20 Best New Websites, March 2024

Welcome to our pick of sites for March. This month’s collection tends towards the simple and clean, which goes to show…

Exciting New Tools for Designers, March 2024

The fast-paced world of design never stops turning, and staying ahead of the curve is essential for creatives. As…

Web Tech Trends to Watch in 2024 and Beyond

It hardly seems possible given the radical transformations we’ve seen over the last few decades, but the web design…

6 Best AI Productivity Apps in 2024

There’s no escaping it: if you want to be successful, you need to be productive. The more you work, the more you…

3 Essential Design Trends, February 2024

From atypical typefaces to neutral colors to unusual user patterns, there are plenty of new website design trends to…

Surviving the Leap from College to Real-World Design

So, you’ve finished college and are ready to showcase your design skills to the world. This is a pivotal moment that…

20 Mind-Bending Illusions That Will Make You Question Reality

Mind-bending videos. Divisive Images. Eye-straining visuals. This list of optical illusions has it all. Join us as we…

15 Best New Fonts, February 2024

Welcome to February’s roundup of the best new fonts for designers. This month’s compilation includes some innovative…

The 10 Best WordPress Quiz Plugins in 2024

Whether it’s boosting your organic search visibility or collecting data for targeted email marketing campaigns, a great…

20 Best New Websites, February 2024

It’s almost Valentine’s Day, so this latest collection is a billet-doux celebrating the best of the web this month.

Everything You Need to Know About Image Formats In 2024

Always trying to walk the tightrope between image quality and file size? Looking to branch out from JPGs and PNGs this…