pdfCreator.h 341 B

12345678910111213
  1. //
  2. // pdfCreator.h
  3. // iSales-NPD
  4. //
  5. // Created by Ray on 10/21/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface pdfCreator : NSObject
  11. +(NSString*)CreatePdf:(NSMutableDictionary*) template dataSource:(NSMutableDictionary*)data;
  12. @end