AirPrintANE is a native extension to print bitmapData using iOS Air Print. It has a very minimalist API with two method only, one that allows developers to check if the extension is supported and another to print the bitmapData. In order to use the extension, an instance of the class must be instantiated and the method printBitmapData() must be called.

Sample

var bitmapData:BitmapData = new BitmapData();
var airPrintAne:AirPrintANE = new AirPrintANE ();

if(airPrintAne.isSupported()) {
    airPrintAne.printBitmapData (bitmapData);
}
Air Native Extension, iOS. URL.