Since the release of iOS7, the Live Blur effect has been extremely popular. Since Apple doesn’t yet provide this effect natively the community has come up with a few different approaches to achieve this effect.
Toolbar Layer
One common approach to achieving a live blur is to use a layer from the UIToolbar. This allows you to use the same live blur effect that a IUToolbar has, but with the same functionality of a UIView. This approach is reliable with good performance. The downside, is you have no control over the Blur and in iOS 7.1 the blur was made softer making it difficult to see when used in come color schemes. Adrian Opaladini has created an excellent Titanium module called Live BlurView which implements this approach. If you are looking at implementing a light live blur I highly recommend checking out this module.
Timer Driven
The next approach to implementing a live blur effect is to use a timer and a blur algorithm or library such as GPUImage. Typically this is implemented using a timer which at a specific duration takes a snapshot of the source view and applies a blur effect. As you can imagine the downside to this approach is you need to implement the refresh code yourself. This usually requires managing the processes of a timer, view snapshot, and image processing. Not a ton of code, but you don’t get anything out of the box. The upside, is complete control over the process. This allows you to use the blur effect that looks best in your app, at a frequency that makes sense. There is an example of how to do this using the Ti.BlurView module here.
Another Option…
I really wasn’t happy with either the Toolbar or Timer approaches. I wanted more control then I had with the Toolbar approach, but the idea of firing a timer when it wasn’t needed wasn’t appealing, especially considering the performance impact. This got me thinking, that for many Titanium apps, the UI fires all types of events when the application state has changed. Why not hook into these events. Out of this came the Scroll Blur example for the Ti.BlurView module.
See it in action
Image may be NSFW.
Clik here to view.
The Code
var mod = require('bencoding.blur'); exports.createWindow = function(){ var win = Ti.UI.createWindow({ backgroundColor:'blue', barColor:"#999", title:"Blur on Scroll" }); function createRows() { function buildRow(el) { var row = Ti.UI.createTableViewRow({ width:150, height:120 }); var headerImage = Ti.UI.createImageView({ image: el.image, width:Ti.UI.FILL, height:Ti.UI.FILL }); var titleLabel = Ti.UI.createLabel({ text: el.title, width: Ti.UI.FILL, height: '30dp', color:'green', horizontalWrap: false, bottom: '5dp', left: '5dp', right: '5dp', font: { fontSize: '20dp', fontWeight:'bold' } }); row.add(headerImage); row.add(titleLabel); return row; }; var rows=[]; for (var iLoop=0;iLoop<100;iLoop++){ rows.push(buildRow({ title: 'Test Row '+iLoop, image: 'cat.jpg'})); } return rows; }; var list = Ti.UI.createTableView({ width:Ti.UI.FILL, height:Ti.UI.FILL, data:createRows() }); win.add(list); var imgView = mod.createGPUBlurImageView({ height:250, width:Ti.UI.FILL, zIndex:500,top:0, blur:{ type:mod.IOS_BLUR, radiusInPixels:1 } }); win.add(imgView); var w = Ti.Platform.displayCaps.platformWidth; var blur = { timerId: null, apply : function(){ Ti.API.debug("Taking screenshot"); var screenshot = list.toImage(); Ti.API.debug("applyBlur : Cropping screenshot"); screenshot.imageAsCropped({x:0,y:0, height:250, width:w}); Ti.API.debug("set screenshot as image to ImageView"); imgView.image = screenshot; Ti.API.debug("set blur so we will update"); imgView.blur={ type:mod.BOX_BLUR, radiusInPixels:5 }; Ti.API.debug(" Done with Blur"); } }; list.addEventListener('scroll',function(f){ Ti.API.debug("action fired : scroll"); if(blur.timerId!=null){ Ti.API.debug("Timer already set, returning"); return; } blur.timerId = setTimeout(function(){ blur.apply(); blur.timerId = null; },50); }); list.addEventListener('scrollend',function(f){ Ti.API.debug("action fired : scrollend"); if(blur.timerId!=null){ Ti.API.debug("Clearing Interval"); clearInterval(blur.timerId); blur.timerId = null; } blur.apply(); }); win.addEventListener('open',function(f){ blur.apply(); }); win.addEventListener('close',function(f){ if(blur.timerId!=null){ clearInterval(blur.timerId); } }); return win; };
Image may be NSFW.
Clik here to view.
Clik here to view.
