// // NSData+PIOAdditions.h // PonyExpress // // Created by Michael Lewis on 2/13/13. // // #import #import @interface NSData (PIOAdditions) + (instancetype)dataWithDispatchData:(dispatch_data_t)data; // returns a dispatch_data_t representation of this object. // This does not copy the internal bytes - (dispatch_data_t)copyDispatchData DISPATCH_RETURNS_RETAINED; @end