Book Image

Appcelerator Titanium Smartphone App Development Cookbook

By : Boydlee Pollentine
Book Image

Appcelerator Titanium Smartphone App Development Cookbook

By: Boydlee Pollentine

Overview of this book

<p>Appcelerator Titanium Mobile allows developers to realize their potential to develop full native iPhone and Android applications by using free Titanium Studio tools without the need to know Objective-C or Java. This practical hands-on cookbook shows you exactly how to leverage the Titanium API to its full advantage and become confident in developing mobile applications in no time at all.<br /><br />Appcelerator Titanium Smartphone App Development Cookbook offers a set of practical and clear recipes with a step-by-step approach for building native applications for both the iPhone and Android platforms using your existing knowledge of JavaScript.<br /><br />This cookbook takes a pragmatic approach to using your JavaScript knowledge to create applications for the iPhone and Android platforms, from putting together basic UIs to handling events and implementation of third party services such Twitter, Facebook and Push notifications. This book shows you how to utilize both remote and local datasources using XML, JSON and the SQLite database system. The topics covered will guide you to use popular Titanium Studio tools effectively and help you leverage all the advanced mobile features such as Geolocation, Accelerometer, animation and more. Finally, you’ll learn how to register developer accounts and how to publish your very own apps to the Android and Apple marketplaces.</p>
Table of Contents (18 chapters)
Appcelerator Titanium Smartphone App Development Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface

Firing and capturing events


Much of Titanium is built around the concept of event-driven programming. If you have ever written code in Visual Basic, C#, Java or any number of event-driven, object-orientated languages, this concept will already be familiar to you.

Each time a user interacts with a part of your application's interface, or types something in a TextField, an event occurs. The event is simply the action the user took (for example, a tap, a scroll, or a key press on the virtual keyboard) and where it took place (for example, on a button, or in this TextField). Additionally, some events can indirectly cause other events to fire. For example, when the user selects a menu item that opens a window, it causes another event—the opening of the window.

There are basically two fundamental types of events in Titanium; those you define yourself (a custom event), and those already defined by the Titanium API (a button click event is a good example).

In the following recipes, we will explore...