Skip to content

mauropm/customTabBar

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Custom Tab Bar

Easily add a custom tabbar to your Appcelerator Titanium iPhone app!

Check this tutorial with instructions about how to implement this. http://www.samjordan.co.uk/2011/02/tutorial-custom-iphone-tabbar-using-appcelerator-titanium/

All available settings are shown in the example, defaults will be along shortly.

Example

// Create the tab group
var tabGroup = Titanium.UI.createTabGroup();

// Assign windows & tabs
// IMPORTANT:
//			'tabBarHidden: true' should be set on all windows
//			height should be set to 480 - customTabBar's height (change 480 to app screen height)
var win1 = Titanium.UI.createWindow({ title:'Tab 1', height: 440, tabBarHidden: true });
var tab1 = Titanium.UI.createTab({ window:win1 });
var win2 = Titanium.UI.createWindow({ title:'Tab 2', height: 440, tabBarHidden: true });
var tab2 = Titanium.UI.createTab({ window:win2 });
tabGroup.addTab(tab1);  
tabGroup.addTab(tab2);  

// open tab group
tabGroup.open();

// Here is the magic
Ti.include("customTabBar/customTabBar.js");

var ctb = new CustomTabBar({
	tabBar: tabGroup,
	imagePath: 'iphone/images/',
	width: 80,
	height: 40,
	items: [
		{ image: 'home.png', selected: 'home_over.png' },
		{ image: 'cloud.png', selected: 'cloud_over.png' },
		{ image: 'cart.png', selected: 'cart_over.png' },
		{ image: 'settings.png', selected: 'settings_over.png' }
	]
});

About

A custom tabbar for Appcelerator's Titanium

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%