WebViewController.h 467 B

1234567891011121314151617
  1. //
  2. // WebViewController.h
  3. // Apex Mobile
  4. //
  5. // Created by Ray on 14-3-13.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "const.h"
  10. @interface WebViewController : UIViewController
  11. @property (strong,nonatomic) NSString* url;
  12. @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
  13. @property (strong,nonatomic) NSString* filename;
  14. @property (strong,nonatomic) NSData* content;
  15. @end