Updated: “Pull to refresh” Titanium Alloy widget In preparation of releasing some more widgets; working together in another widget for adding a Twitter tab to your apps, I’ve updated my “Pull to refresh” widget with new API methods to manually show, hide, update and fully trigger the widget. You can use this for example to show the headerPullView upon first load. WANTED: […]
“Pull to refresh” widget for Titanium Alloy Who can live without it? The concept of pulling down a view (mostly a table) to refresh its contents can nowadays be found in almost any app. And now, you can add it to your apps using the new MVC framework Alloy for Appcelerator Titanium in just 4 lines of code: 1234 var ptrCtrl = Alloy.createWidget('nl.fokkezb.pullToRefresh', null, { table: $.myTable, load: myLoadCallback}); Just pull the code from Github! Updated […]