Book Image

iPhone User Interface Cookbook

By : Cameron Banga
Book Image

iPhone User Interface Cookbook

By: Cameron Banga

Overview of this book

The incredible growth rates for the iPhone, iPod touch, and iPad have pushed consumers to a new “App” economy, with developers racing to the platform. Mobile touch-centric interfaces vary greatly from traditional computing platforms, and programmers as well as designers must learn to adapt to the new form-factor.The iPhone User Interface Cookbook offers a complete breakdown of standard interface design on the iPhone, iPod touch, and iPad. You will learn the tools behind the trade, how to properly utilize standard interface elements, and custom UI tricks that will help your work stand out on the App Store.The book is designed to be a complete overview of interface design on all iOS platforms, offering insight and an inside look into app design. A variety of topics are covered, starting with an overview of tools for the app interface designer, touching upon popular interface components such as the Tab Bar, and offering suggestions for complex game interfaces. Whether you’re new to the platform or a seasoned developer with numerous applications in the App Store, this book strives to teach everyone simple and easy to implement tips for iOS interface design. Regardless of skill level, the iPhone User Interface Cookbook offers a detailed breakdown of all things interface design.
Table of Contents (18 chapters)
iPhone User Interface Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
PacktLib.PacktPub.com
Preface
The Importance of Direct Manipulation
If you need a stylus, you blew it

Integrating Web View into our app


Being connected to the Internet at any given moment with a full web browser is really a factor that helped propel the iPhone's massive popularity. While browsing on a mobile device wasn't exactly a new concept when the phone first released, no manufacturer had ever put together such a smooth experience.

This power web browser was built on Apple's Web Kit rendering engine, which provided an experience similar to what was possible on Safari for OS X. Rich web content was already available out of the box and with a bit of code modification, any website could be optimized for the small screen.

In compiling the first public version of the iOS SDK, Apple gave the developers access to Web Kit through a Web View. In this recipe, we'll discuss different ways to go about including Web Views inside our application.

Getting ready

For this application, we should have access to mobile Safari on our iPhone or iPad device.

How to do it...

The mobile Safari browser built with...