For more, head out to my site or to the Appcelerator Developer Center.
Implementation works the same cross-platform. Enjoy!
If you have any questions, please feel free to ask on my blog or via the contact information found there.
cachedImageView Usage: Ti.include('lib/cachedImageView.js'); function createMyImage() { var win = Ti.UI.currentWindow;
var imgMyImage = Ti.UI.createImageView({
width: 120,
height: 120,
top:10,
left:10
});
cachedImageView('imageDirectoryName', 'http://MyRemoteServer.com/public/images/1.png', imgMyImage);
win.add(imgMyImage);
win.open({animated:true});
};
No License, just use and enjoy!