How to Clean the Build Folder
10 Jul 2011
Filed
in: Intermediate

The build folder is a directory that is created when you test your app on the iOS Simulator. The build folder includes an Xcode project and all the Objective-C code that is required for your app to run on an iOS device.
Read More...
Comments
Titanium Studio - An Overview
20 Jun 2011
Filed
in: Intermediate
| Cutting Edge

Get the official details and download a copy here.
A product of Appcelerator’s purchase of Aptana, Titanium Studio is a quite impressive product, even though it isn’t quite as pretty as its predecessor, Titanium Developer. If you like IDEs - then you should be happy now that Titanium Studio is available. Read More...
Creating Universal Titanium Apps
31 May 2011
Filed
in: Intermediate

Here’s a recommended way to prepare a Universal app... Read More...
Introducing the Titanium Warehouse
17 May 2011
Filed
in: General
Notice a new tab at the top of this site?
That’s the Titanium Warehouse.
The Titanium Warehouse contains links to all the useful blog posts that have been written on this site and will hopefully become a comprehensive resource for Titanium developers. Links to other useful sites around the web and Appcelerator’s own documentation might be added in the future as well.
The Titanium Warehouse is categorised into logical topic groupings to help you find what you need to know. If you’re having a problem with Titanium development, then hopefully the code warehouse will help you to find a quick and easy solution.
From now on, whenever a new tip is posted on the main Titanium Tips blog page,
the Titanium Warehouse will be updated accordingly.
That’s the Titanium Warehouse.
The Titanium Warehouse contains links to all the useful blog posts that have been written on this site and will hopefully become a comprehensive resource for Titanium developers. Links to other useful sites around the web and Appcelerator’s own documentation might be added in the future as well.
The Titanium Warehouse is categorised into logical topic groupings to help you find what you need to know. If you’re having a problem with Titanium development, then hopefully the code warehouse will help you to find a quick and easy solution.
From now on, whenever a new tip is posted on the main Titanium Tips blog page,
the Titanium Warehouse will be updated accordingly.
iPad Dimensions - Landscape
09 May 2011
Filed
in: Basics
Size of the standard iPad User
Interface (UI) elements in Landscape orientation.

The good thing about the iPad (so far) is that there is no Retina display to worry about - so no @2x images are required.
If you want an image to fill the Main Content Area, it needs to be 1024 pixels wide by 655 pixels high.
In case you can’t make sense of the graphic...


The good thing about the iPad (so far) is that there is no Retina display to worry about - so no @2x images are required.
If you want an image to fill the Main Content Area, it needs to be 1024 pixels wide by 655 pixels high.
In case you can’t make sense of the graphic...
iPad Landscape Width | 1024px |
iPad Landscape Height | 768px |
Status Bar Height | 20px |
Nav Bar Height | 44px |
Main Content Area Height | 655px |
Tab Bar Height | 49px |
Keyboard Height | 352px |

Note that when the keyboard is
displayed, it covers up the Tab Bar at the bottom of the
screen.
iPad Dimensions - Portrait
02 May 2011
Filed
in: Basics
Here’s the size of the standard iPad
User Interface (UI) elements. You know, the Status Bar, Nav Bar,
Tab Bar, etc.

The good thing about the iPad (so far) is that there is no Retina display to worry about - so no @2x images are required.
If you want an image to fill the Main Content Area, it needs to be 768 pixels wide by 911 pixels high.
In case you can’t make sense of the graphic...


The good thing about the iPad (so far) is that there is no Retina display to worry about - so no @2x images are required.
If you want an image to fill the Main Content Area, it needs to be 768 pixels wide by 911 pixels high.
In case you can’t make sense of the graphic...
iPad Portrait Width | 768px |
iPad Portrait Height | 1024px |
Status Bar Height | 20px |
Nav Bar Height | 44px |
Main Content Area Height | 911px |
Tab Bar Height | 49px |
Keyboard Height | 264px |

Note that when the keyboard is displayed, it covers up the Tab Bar at the bottom of the screen.