|
//
// TPWebViewContoller.h
// ThePaperDemo
//
// Created by scar1900 on 14/10/28.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import "newPageBaseController.h"
@interface TPWebViewContoller : newPageBaseController
@property(nonatomic, strong)NSString *url;
@property(nonatomic, strong)UIButton *safariButton;
@property(nonatomic, strong)UILabel *safariLabel;
@property(nonatomic, strong)UIImageView *safariImage;
@property(nonatomic, strong)UIWebView *webView;
@property(nonatomic, strong)UIActivityIndicatorView *activityView;
@end
|