WebViewController.h 586 B

123456789101112131415161718192021222324252627
  1. //
  2. // WebViewController.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 1/21/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface WebViewController : UIViewController
  10. @property (strong, nonatomic) IBOutlet UIWebView *webView;
  11. @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
  12. @property (strong,nonatomic) NSString* url;
  13. //@property (strong,nonatomic) NSString* title;
  14. @property (strong,nonatomic) NSData* content;
  15. @property (nonatomic , copy) void (^onLoadSuccess)(NSString* url );
  16. @end