Appcelerator Titanium's TableView supports search by setting searchBar value to Ti.UI.searchBar . So, when we use this searchBar view it will automatically filter row which is having title with search content existing in that row title. For example our data is like this
var data = [
{title:"Title" //this will search automatically },
{title:"Title" //this will search automatically },
:
];
or
var row= Ti.UI.createTableViewRow({
title:"HERE TITLE" //It will search automatically
});...
Read More