Skip to Content
Appcelerator Titanium: Up and Running
book

Appcelerator Titanium: Up and Running

by John Anderson
March 2013
Intermediate to advanced
151 pages
3h 47m
English
O'Reilly Media, Inc.
Content preview from Appcelerator Titanium: Up and Running

Chapter 7. Customizing Titanium

The previous chapters have given you an overview of Titanium’s language, namespaces, objects, and methods, hopefully offering you plenty of neat stuff to work with. But Titanium’s foundation in JavaScript also makes it easy to extend and customize. JavaScript lets you create your own prototype functions that add functionality to any class you want. For instance, you can easily create a string prototype function that adds functionality to any string object created in JavaScript, like this:

String.prototype.trim = function() { 
    return this.replace(/^\s+|\s+$/, ''); };

This line of code adds a trim function to any JavaScript string object you create. Prototypes are a very cool feature of JavaScript and should be exploited profusely. They allow you to add functions that perhaps you’ve gotten used to in other languages and would like to take advantage of while working with Titanium.

You can also make “mini-factories,” which are basically functions that create Titanium objects with certain properties or other traits that you’ll need regularly. Creating these mini-factories will allow you to have a central point where you can make changes, and all the calls to these factories will return an object with those changes in it.

What’s in a Name...Space

Titanium contains many separate objects, making them available via namespaces. In general terms, a namespace is an abstract container that provides a context for the items that it contains.

The topmost object in the Titanium ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Building Cross-Platform Apps using Titanium, Alloy, and Appcelerator Cloud Services

Building Cross-Platform Apps using Titanium, Alloy, and Appcelerator Cloud Services

Aaron Saunders
Real World .NET 4, C#, and Silverlight®: Indispensible Experiences from 15 MVPs

Real World .NET 4, C#, and Silverlight®: Indispensible Experiences from 15 MVPs

Bill Evjen, Dominick Baier, György Balássy, Gill Cleeren, David Giard, Alex Golesh, Kevin Grossnicklaus, Caleb Jenkins, Jeffrey Juday, Vishwas Lele, Jeremy Likness, Scott Millett, Christian Nagel, Christian Weyer, Daron Yöndem

Publisher Resources

ISBN: 9781449329549Errata Page